diff --git a/src/colab/custom_settings.py b/src/colab/custom_settings.py index 86c20ca..9abef84 100644 --- a/src/colab/custom_settings.py +++ b/src/colab/custom_settings.py @@ -137,11 +137,15 @@ AUTHENTICATION_BACKENDS = ( ) STATICFILES_DIRS = ( - os.path.join(BASE_DIR, 'colab', 'static'), + os.path.join(BASE_DIR, 'static'), ) STATIC_ROOT = os.path.join(BASE_DIR, '..', 'www', 'static') +TEMPLATE_DIRS = ( + os.path.join(BASE_DIR, 'templates'), +) + AUTH_USER_MODEL = 'accounts.User' from django.contrib.messages import constants as messages -- libgit2 0.21.2