Files
breccia-mapper/breccia_mapper/views.py
2020-04-16 14:07:14 +01:00

14 lines
360 B
Python

"""
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 set in Django settings file - may be customised by a customisation app
template_name = settings.TEMPLATE_NAME_INDEX