diff options
author | Jayaram Pai | 2014-04-28 20:16:48 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-04-28 20:16:48 +0530 |
commit | 5c8db8b5a3e363be63f21700149ef5891410374c (patch) | |
tree | be2a29678f9bbd7a3b253d8839eac1c34ee51718 /forums | |
parent | 7c3c9f3a0591b4b785e30b22c0cf0d2b33c17b1e (diff) | |
download | FOSSEE-Forum-5c8db8b5a3e363be63f21700149ef5891410374c.tar.gz FOSSEE-Forum-5c8db8b5a3e363be63f21700149ef5891410374c.tar.bz2 FOSSEE-Forum-5c8db8b5a3e363be63f21700149ef5891410374c.zip |
Oscad workshop notification added.
Diffstat (limited to 'forums')
-rw-r--r-- | forums/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/forums/settings.py b/forums/settings.py index be17520..406ac21 100644 --- a/forums/settings.py +++ b/forums/settings.py @@ -185,7 +185,10 @@ LOGGING = { AUTH_USER_MODEL = 'drupal_auth.Users' AUTHENTICATION_BACKENDS = ( 'drupal_auth.backends.DrupalAuthBackend', ) DATABASE_ROUTERS = ['drupal_auth.routers.DrupalAuthRouter'] -TEMPLATE_CONTEXT_PROCESSORS += ('website.context_processors.admin_processor', ) +TEMPLATE_CONTEXT_PROCESSORS += ( + 'django.core.context_processors.request', + 'website.context_processors.admin_processor', +) COMPRESS_ROOT = PROJECT_DIR + "/static/" COMPRESS_ENABLED = True |