useless
This commit is contained in:
parent
6bb176be01
commit
8d29049989
9 changed files with 17 additions and 4 deletions
1
api/__init__.py
Normal file
1
api/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
default_app_config = 'api.apps.APIConfig'
|
6
api/apps.py
Normal file
6
api/apps.py
Normal 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")
|
|
@ -0,0 +1 @@
|
|||
default_app_config = 'communication.apps.CommunicationConfig'
|
|
@ -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
1
equipment/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
default_app_config = 'equipment.apps.EquipmentConfig'
|
|
@ -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 = [
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
default_app_config = 'event.apps.EventConfig'
|
|
@ -0,0 +1 @@
|
|||
default_app_config = 'users.apps.UsersConfig'
|
0
users/migrations/__init__.py
Normal file
0
users/migrations/__init__.py
Normal file
Loading…
Add table
Reference in a new issue