refactor: Begin import of customisation app

This commit is contained in:
James Graham
2020-04-16 14:07:14 +01:00
parent 224a92f42e
commit 57c29bf01d
2 changed files with 28 additions and 1 deletions

View File

@@ -4,8 +4,10 @@ Views belonging to the core of the project.
These views don't represent any of the models in the apps.
"""
from django.conf import settings
from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = 'index.html'
# Template set in Django settings file - may be customised by a customisation app
template_name = settings.TEMPLATE_NAME_INDEX