summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiskvorky <radimrehurek@seznam.cz>2011-12-07 02:57:32 +0100
committerpiskvorky <radimrehurek@seznam.cz>2011-12-07 02:57:32 +0100
commit53cd343ea0f33f3b269ae5fd5e3890a3a3ad934d (patch)
tree1e3c3412a8aface2c6d846bd978a86d0bba7ebb7
parent0118be48b0272147aa63fd8910b99acbfaa52102 (diff)
downloadaskbot-53cd343ea0f33f3b269ae5fd5e3890a3a3ad934d.tar.gz
askbot-53cd343ea0f33f3b269ae5fd5e3890a3a3ad934d.tar.bz2
askbot-53cd343ea0f33f3b269ae5fd5e3890a3a3ad934d.zip
added the staticfiles app itself =)
-rw-r--r--askbot/setup_templates/settings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index 7964368b..f41500f7 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -142,6 +142,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'askbot.user_messages.context_processors.user_messages',#must be before auth
'django.core.context_processors.auth', #this is required for admin
'django.core.context_processors.csrf', #necessary for csrf protection
+ "django.core.context_processors.static",
)
@@ -150,6 +151,7 @@ INSTALLED_APPS = (
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
+ "django.contrib.staticfiles",
#all of these are needed for the askbot
'django.contrib.admin',