This commit is contained in:
Qwann 2017-07-26 19:58:10 +02:00
parent 6bb176be01
commit 8d29049989
9 changed files with 17 additions and 4 deletions

1
api/__init__.py Normal file
View file

@ -0,0 +1 @@
default_app_config = 'api.apps.APIConfig'

6
api/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.utils.translation import ugettext_lazy as _
from django.apps import AppConfig
class APIConfig(AppConfig):
name = 'api'
verbose_name = _("API")

View file

@ -0,0 +1 @@
default_app_config = 'communication.apps.CommunicationConfig'

View file

@ -1,4 +1,6 @@
from django.utils.translation import ugettext_lazy as _
from django.apps import AppConfig
class CommunicationConfig(AppConfig):
name = 'communication'
verbose_name = _("communication")

1
equipment/__init__.py Normal file
View file

@ -0,0 +1 @@
default_app_config = 'equipment.apps.EquipmentConfig'

View file

@ -44,10 +44,6 @@ BASE_DIR = os.path.dirname(
INSTALLED_APPS = [
'communication.apps.CommunicationConfig',
'equipment.apps.EquipmentConfig',
'event.apps.EventConfig',
'users.apps.UsersConfig',
'shared.apps.SharedConfig',
'django.contrib.admin',
'django.contrib.auth',
@ -60,6 +56,10 @@ INSTALLED_APPS = [
'bootstrapform',
'widget_tweaks',
'api',
'communication',
'equipment',
'event',
'users',
]
MIDDLEWARE_CLASSES = [

View file

@ -0,0 +1 @@
default_app_config = 'event.apps.EventConfig'

View file

@ -0,0 +1 @@
default_app_config = 'users.apps.UsersConfig'

View file