Files
breccia-mapper/breccia_mapper/views.py
2020-03-30 20:52:09 +01:00

17 lines
375 B
Python

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