diff --git a/cloud/settings.py b/cloud/settings.py index 498e90e..4f9f450 100644 --- a/cloud/settings.py +++ b/cloud/settings.py @@ -110,6 +110,17 @@ ROOT_URLCONF = 'cloud.urls' # Python dotted path to the WSGI application used by Django's runserver. WSGI_APPLICATION = 'cloud.wsgi.application' +TEMPLATE_CONTEXT_PROCESSORS = ( + 'django.contrib.auth.context_processors.auth', + 'django.core.context_processors.debug', + 'django.core.context_processors.i18n', + 'django.core.context_processors.media', + 'django.core.context_processors.static', + 'django.core.context_processors.tz', + 'django.contrib.messages.context_processors.messages', + 'cloud.context_processors.process_debug', +) + TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows.