Update template configuration for newer django
authorMagnus Hagander <magnus@hagander.net>
Fri, 9 Mar 2018 20:58:49 +0000 (15:58 -0500)
committerMagnus Hagander <magnus@hagander.net>
Fri, 9 Mar 2018 20:58:49 +0000 (15:58 -0500)
Also fully backwards compatible

pgweb/settings.py

index ccbbe6d61198e9c206f93f2ce38782607e0aacd5..d5390a3e807ecd676f3c69d42bc85b738ceecd70 100644 (file)
@@ -50,13 +50,6 @@ STATICFILES_DIRS = (
 # Make this unique, and don't share it with anybody.
 SECRET_KEY = 'REALLYCHANGETHISINSETTINGS_LOCAL.PY'
 
-# List of callables that know how to import templates from various sources.
-TEMPLATE_LOADERS = (
-       'django.template.loaders.filesystem.Loader',
-    'django.template.loaders.app_directories.Loader',
-#     'django.template.loaders.eggs.load_template_source',
-)
-
 MIDDLEWARE_CLASSES = [
     'django.middleware.common.CommonMiddleware',
     'django.contrib.sessions.middleware.SessionMiddleware',
@@ -70,17 +63,19 @@ CSRF_FAILURE_VIEW='pgweb.core.views.csrf_failure'
 
 ROOT_URLCONF = 'pgweb.urls'
 
-TEMPLATE_DIRS = (
-    'templates/',
-       '../templates', # Sometimes called in subdirectories, should never hurt to have both
-)
-
-TEMPLATE_CONTEXT_PROCESSORS = (
-       'django.contrib.auth.context_processors.auth',
-       'django.contrib.messages.context_processors.messages',
-       'django.core.context_processors.media',
-       'pgweb.util.contexts.PGWebContextProcessor',
-)
+TEMPLATES = [{
+       'BACKEND': 'django.template.backends.django.DjangoTemplates',
+       'DIRS': ['templates', ],
+       'APP_DIRS': True,
+       'OPTIONS': {
+               'context_processors': [
+                       'django.contrib.auth.context_processors.auth',
+                       'django.contrib.messages.context_processors.messages',
+                       'django.core.context_processors.media',
+                       'pgweb.util.contexts.PGWebContextProcessor',
+               ],
+       },
+}]
 
 LOGIN_URL='/account/login/'
 LOGIN_REDIRECT_URL='/account/'