JourneyJoker/public/views.py

7 lines
193 B
Python
Raw Normal View History

from django.views.generic import TemplateView
2021-03-01 09:56:10 +00:00
class HomeView(TemplateView):
template_name = "frontend/index.html"
class Error404View(TemplateView):
template_name = "frontend/404.html"