summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-12-30 22:18:27 -0600
committerDan McGee <dan@archlinux.org>2012-12-30 22:18:27 -0600
commit3e7c519ae224800375a488d2c961db7cdcf8ee51 (patch)
treed09f3516a95350a2e750fdf76d19fa5f0f8ff1e2
parent2fd15b4187f3ef36360ba6dcbf3c8f6cdc7517f9 (diff)
downloadarchweb-3e7c519ae224800375a488d2c961db7cdcf8ee51.tar.gz
archweb-3e7c519ae224800375a488d2c961db7cdcf8ee51.zip
Remove several context processors we don't use
We're not using any of the injected values these context processors provide in our templates, so remove them from our default config. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--settings.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index ba1e301b..53358077 100644
--- a/settings.py
+++ b/settings.py
@@ -49,9 +49,6 @@ AUTH_PROFILE_MODULE = 'devel.UserProfile'
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
- 'django.core.context_processors.i18n',
- 'django.core.context_processors.media',
- 'django.core.context_processors.static',
'django.contrib.messages.context_processors.messages',
'main.context_processors.secure',
)