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

12 lines
225 B
Python

"""
Views belonging to the core of the project.
These views don't represent any of the models in the apps.
"""
from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = 'index.html'