Update base development settings to work with Django 1.10.x

This commit is contained in:
Roberto Rosario
2016-12-29 13:14:34 -04:00
parent 5167bbadee
commit 5b94b419e9

View File

@@ -3,13 +3,12 @@ from __future__ import absolute_import, unicode_literals
from . import * # NOQA
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ALLOWED_HOSTS = ['*']
TEMPLATE_LOADERS = (
TEMPLATES[0]['OPTIONS']['loaders'] = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader'
'django.template.loaders.app_directories.Loader',
)
INSTALLED_APPS += (