Update settings
[eatslugs.git] / eatslugs / settings.py
index cd97c9642321868754a6a54fc0ce7482e9c9ddb3..1eec8323fef01ce263e3d5710598fd5b5efbe49f 100644 (file)
@@ -69,12 +69,23 @@ INSTALLED_APPS = (
     'recipes',
 )
 
-TEMPLATE_CONTEXT_PROCESSORS = (
-    'django.contrib.auth.context_processors.auth',
-    'django.core.context_processors.debug',
-    'django.core.context_processors.i18n',
-    'generic.context_processors.media',
-)
+TEMPLATES = [
+    {
+        'BACKEND': 'django.template.backends.django.DjangoTemplates',
+        'DIRS': [os.path.join(topdir, 'templates'),],
+        'APP_DIRS': True,
+        'OPTIONS': {
+            'context_processors': [
+                'django.contrib.auth.context_processors.auth',
+                'django.core.context_processors.debug',
+                'django.core.context_processors.i18n',
+                'generic.context_processors.media',
+            ],
+            'debug': True,
+        },
+    },
+]
+
 
 try:
     from localsettings import *