From 5bea757ad825fcf168b453f835b71198f748435a Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Thu, 26 Sep 2013 18:38:54 -0300 Subject: [PATCH] Updating settings to match new static location --- src/colab/custom_settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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