tests: add base.html template

This commit is contained in:
Benjamin Dauvergne 2016-03-11 16:46:49 +01:00
parent a3bc087890
commit 1fd8489932
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,6 @@
<html>
<body>
{% block content %}
{% endblock %}
</body>
</html>

View File

@ -24,6 +24,9 @@ AUTHENTICATION_BACKENDS = (
'mellon.backends.SAMLBackend',
)
ROOT_URLCONF = 'mellon.urls'
TEMPLATE_DIRS = [
'tests/templates/',
]
if django.VERSION >= (1,8):
TEMPLATES = [
{