9 lines
196 B
Python
9 lines
196 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class EstablishmentConfig(AppConfig):
|
|
|
|
name = 'establishment'
|
|
verbose_name = _('Establishment')
|