fix bootstrap and app registration

This commit is contained in:
Jens Timmerman 2021-08-07 00:34:18 +02:00
parent 537929f460
commit 1d867aad98
2 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,7 @@
- name: Install multi python packages
pip:
name:
- django-bootstrap4
- bootstrap4
- name: 'Create im user'
user:

View File

@ -33,6 +33,7 @@ ALLOWED_HOSTS = [
# Application definition
INSTALLED_APPS = [
'users',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
@ -40,6 +41,8 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'nmgfitness',
'bootstrap4',
]
MIDDLEWARE = [