Files
breccia-mapper/breccia_mapper/views.py
2020-03-27 14:31:59 +00:00

10 lines
184 B
Python

from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = 'index.html'
class ExportListView(TemplateView):
template_name = 'export.html'