django/tests/auth_tests/settings.py

19 lines
529 B
Python
Raw Normal View History

2014-12-18 05:10:57 +08:00
import os
AUTH_MIDDLEWARE = [
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(__file__), 'templates')],
2014-12-18 05:10:57 +08:00
'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
},
}]