mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
12 lines
225 B
Python
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'
|