forked from expo/troggle
merge support for django 1.2 location for auth module
This commit is contained in:
commit
64f4e122a5
@ -57,7 +57,12 @@ TEMPLATE_LOADERS = (
|
|||||||
# 'django.template.loaders.eggs.load_template_source',
|
# 'django.template.loaders.eggs.load_template_source',
|
||||||
)
|
)
|
||||||
|
|
||||||
TEMPLATE_CONTEXT_PROCESSORS = ( "django.contrib.auth.context_processors.auth", "core.context.troggle_context", )
|
if django.VERSION[0] == 1 and django.VERSION[1] < 4:
|
||||||
|
authmodule = 'django.core.context_processors.auth'
|
||||||
|
else:
|
||||||
|
authmodule = 'django.contrib.auth.context_processors.auth'
|
||||||
|
|
||||||
|
TEMPLATE_CONTEXT_PROCESSORS = ( authmodule, "core.context.troggle_context", )
|
||||||
|
|
||||||
LOGIN_REDIRECT_URL = '/'
|
LOGIN_REDIRECT_URL = '/'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user