django/tests/auth_tests/settings.py

21 lines
580 B
Python
Raw Normal View History

2014-12-18 05:10:57 +08:00
import os
from django.utils._os import upath
AUTH_MIDDLEWARE_CLASSES = [
2014-12-18 05:10:57 +08:00
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
]
2014-12-18 05:10:57 +08:00
AUTH_TEMPLATES = [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(os.path.dirname(upath(__file__)), 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
2014-12-18 05:10:57 +08:00
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
2014-12-18 05:10:57 +08:00
},
}]