Fix some changed Django import paths in settings.py

- Legacy-Id: 6897
This commit is contained in:
Ole Laursen 2013-12-12 12:13:44 +00:00
parent 9b720d2a70
commit ad26ab4b37

View file

@ -106,8 +106,8 @@ SESSION_COOKIE_AGE = 43200 # 12 hours
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
'ietf.dbtemplate.template.load_template_source',
)
@ -135,7 +135,7 @@ TEMPLATE_DIRS = (
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.auth',
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.request',