JourneyJoker/public/views.py

10 lines
No EOL
271 B
Python

from django.views.generic import TemplateView
class HomeView(TemplateView):
template_name = "frontend/index.html"
class Error404View(TemplateView):
template_name = "frontend/404.html"
class DemoTemplateView(TemplateView):
template_name = "mail/verify.html"