diff --git a/webvirtcloud/settings.py b/webvirtcloud/settings.py index 9e0ff3a..f78a02b 100644 --- a/webvirtcloud/settings.py +++ b/webvirtcloud/settings.py @@ -78,9 +78,13 @@ STATICFILES_DIRS = ( os.path.join(BASE_DIR, "static"), ) -TEMPLATE_DIRS = ( - os.path.join(BASE_DIR, 'templates'), -) +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [ os.path.join(BASE_DIR, 'templates'), ], + 'APP_DIRS': True, + } +] ## WebVirtCloud settings