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
|
from django.apps import AppConfig
|
||||||
|
|
||||||
class CommunicationConfig(AppConfig):
|
class CommunicationConfig(AppConfig):
|
||||||
name = 'communication'
|
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 = [
|
INSTALLED_APPS = [
|
||||||
'communication.apps.CommunicationConfig',
|
|
||||||
'equipment.apps.EquipmentConfig',
|
|
||||||
'event.apps.EventConfig',
|
|
||||||
'users.apps.UsersConfig',
|
|
||||||
'shared.apps.SharedConfig',
|
'shared.apps.SharedConfig',
|
||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
|
@ -60,6 +56,10 @@ INSTALLED_APPS = [
|
||||||
'bootstrapform',
|
'bootstrapform',
|
||||||
'widget_tweaks',
|
'widget_tweaks',
|
||||||
'api',
|
'api',
|
||||||
|
'communication',
|
||||||
|
'equipment',
|
||||||
|
'event',
|
||||||
|
'users',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE_CLASSES = [
|
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