Mercurial > public > sg101
comparison gpp/settings.py @ 175:776028f4bced
Ticket #60. The TEMPLATE_CONTEXT_PROCESSOR django.core.context_processors.auth moved to django.contrib.auth.context_processors.auth.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 03 Mar 2010 04:09:42 +0000 |
parents | e9c718065a25 |
children | d51743322bb2 |
comparison
equal
deleted
inserted
replaced
174:e9c718065a25 | 175:776028f4bced |
---|---|
82 os.path.join(project_path, 'templates'), | 82 os.path.join(project_path, 'templates'), |
83 '/home/brian/coding/python/django/django-elsewhere/elsewhere/templates', | 83 '/home/brian/coding/python/django/django-elsewhere/elsewhere/templates', |
84 ) | 84 ) |
85 | 85 |
86 TEMPLATE_CONTEXT_PROCESSORS = ( | 86 TEMPLATE_CONTEXT_PROCESSORS = ( |
87 "django.core.context_processors.auth", | 87 "django.contrib.auth.context_processors.auth", |
88 "django.core.context_processors.debug", | 88 "django.core.context_processors.debug", |
89 "django.core.context_processors.request", | 89 "django.core.context_processors.request", |
90 "django.core.context_processors.media" | 90 "django.core.context_processors.media" |
91 ) | 91 ) |
92 | 92 |