Commit 304b15ae by Timothée Peignier

Merge pull request #479 from leonardoo/Django110Warning-Templates

add templates to test pipeline
parents 213b6303 feb81994
...@@ -118,3 +118,17 @@ PIPELINE_JS = { ...@@ -118,3 +118,17 @@ PIPELINE_JS = {
} }
} }
} }
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'DIRS': TEMPLATE_DIRS,
},
{
'BACKEND': 'django.template.backends.jinja2.Jinja2',
'APP_DIRS': True,
'DIRS': TEMPLATE_DIRS,
}
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment