initial app
This commit is contained in:
parent
0cb3971ea4
commit
bb284420c4
8
apps/establishment/apps.py
Normal file
8
apps/establishment/apps.py
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
|
|
||||||
|
class EstablishmentsConfig(AppConfig):
|
||||||
|
|
||||||
|
name = 'establishment'
|
||||||
|
verbose_name = _('Establishment')
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
from django.apps import AppConfig
|
|
||||||
|
|
||||||
|
|
||||||
class EstablishmentsConfig(AppConfig):
|
|
||||||
name = 'establishments'
|
|
||||||
|
|
@ -54,12 +54,13 @@ CONTRIB_APPS = [
|
||||||
PROJECT_APPS = [
|
PROJECT_APPS = [
|
||||||
'account.apps.AccountConfig',
|
'account.apps.AccountConfig',
|
||||||
'authorization.apps.AuthorizationConfig',
|
'authorization.apps.AuthorizationConfig',
|
||||||
|
'collection.apps.CollectionConfig',
|
||||||
|
'establishment.apps.EstablishmentConfig',
|
||||||
'location.apps.LocationConfig',
|
'location.apps.LocationConfig',
|
||||||
'main.apps.MainConfig',
|
'main.apps.MainConfig',
|
||||||
'news.apps.NewsConfig',
|
'news.apps.NewsConfig',
|
||||||
'translation.apps.TranslationConfig',
|
|
||||||
'collection.apps.CollectionConfig',
|
|
||||||
'partner.apps.PartnerConfig'
|
'partner.apps.PartnerConfig'
|
||||||
|
'translation.apps.TranslationConfig',
|
||||||
]
|
]
|
||||||
|
|
||||||
EXTERNAL_APPS = [
|
EXTERNAL_APPS = [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user