1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 16:38:23 +02:00

Login is possible

This commit is contained in:
Yohann D'ANELLO
2020-04-29 07:55:06 +02:00
parent 264f2b7e6b
commit 93735da1a4
14 changed files with 168 additions and 9 deletions

View File

@ -43,6 +43,13 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.forms',
'polymorphic',
'crispy_forms',
'django_tables2',
'rest_framework',
'rest_framework.authtoken',
'member',
'tournament',
@ -152,3 +159,7 @@ STATICFILES_DIRS = [
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
CRISPY_TEMPLATE_PACK = 'bootstrap4'
DJANGO_TABLES2_TEMPLATE = 'django_tables2/bootstrap4.html'