mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
14 lines
360 B
Python
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
|