1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/website/common/views.py
2020-04-25 20:35:34 +01:00

10 lines
184 B
Python

from django.views.generic import TemplateView
class HomepageView(TemplateView):
template_name = "homepage.html"
class AboutView(TemplateView):
template_name = "about.html"