summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2017-02-13 22:12:30 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2017-05-02 21:13:56 +0200
commit353f803c4d0be7f4803873cd76359115303a4bca (patch)
treeb90bb6ed9b21398cc497e7c6ce9d092e66dac012 /settings.py
parentc4dd0ead1557ff249b57c06c082516104e62062e (diff)
downloadarchweb-353f803c4d0be7f4803873cd76359115303a4bca.tar.gz
archweb-353f803c4d0be7f4803873cd76359115303a4bca.zip
Remove the last piece of django-jinja existance
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/settings.py b/settings.py
index 2d36d063..4a0ca9d2 100644
--- a/settings.py
+++ b/settings.py
@@ -47,16 +47,6 @@ AUTH_PROFILE_MODULE = 'devel.UserProfile'
from os import path
TEMPLATES = [
{
- 'BACKEND': 'django_jinja.backend.Jinja2',
- 'APP_DIRS': True,
- 'DIRS': [
- path.join(DEPLOY_PATH, 'templates/jinja')
- ],
- 'OPTIONS': {
- 'match_extension': '.jinja'
- }
- },
- {
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
path.join(DEPLOY_PATH, 'templates')
@@ -124,7 +114,6 @@ INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.staticfiles',
'django_countries',
- 'django_jinja',
'main',
'mirrors',