add all new apps to the project

This commit is contained in:
Andreas Zweili 2020-01-09 22:01:51 +01:00
parent 8e9ca5fafe
commit 159e666ecc
1 changed files with 8 additions and 6 deletions

View File

@ -22,19 +22,21 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Application definition
INSTALLED_APPS = [
'core.apps.CoreConfig',
'customers.apps.CustomersConfig',
'devices.apps.DevicesConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.sessions',
'django.contrib.staticfiles',
'core.apps.CoreConfig',
'customer.apps.CustomerConfig',
'inventory.apps.InventoryConfig',
'guardian',
'django_tables2',
'django_filters',
'django_tables2',
'guardian',
'inventory.apps.InventoryConfig',
'nested_admin',
'users.apps.UsersConfig',
]
MIDDLEWARE = [