settings: TEMPLATE_DIRS is a list.

This commit is contained in:
Mikaël Ates 2014-10-14 10:00:26 +02:00
parent 861220e23c
commit 6bc674ea75
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
os.path.join(PROJECT_PATH, "templates")
os.path.join(PROJECT_PATH, "templates"),
)
TEMPLATE_CONTEXT_PROCESSORS = ("django.contrib.auth.context_processors.auth",