From aa637553ff5454a32b6f0cac909f4e3d05b0bb63 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 19 Jul 2011 11:50:01 +0100 Subject: [PATCH] Fixed context processors! --- app/conf/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/conf/common.py b/app/conf/common.py index 413a37a..73fa86b 100644 --- a/app/conf/common.py +++ b/app/conf/common.py @@ -42,11 +42,11 @@ TEMPLATE_DIRS = ( os.path.join(os.path.dirname(__file__), '..', 'templates'), ) -TEMPLATE_CONTEXT_PRCESSORS = ( +TEMPLATE_CONTEXT_PROCESSORS = ( "django.contrib.auth.context_processors.auth", "django.core.context_processors.debug", "django.core.context_processors.i18n", - "django.contrib.staticfiles.context_processors.staticfiles", + "django.core.context_processors.static", "django.contrib.messages.context_processors.messages", "django.core.context_processors.request" )