7 lines
No EOL
193 B
Python
7 lines
No EOL
193 B
Python
from django.views.generic import TemplateView
|
|
|
|
class HomeView(TemplateView):
|
|
template_name = "frontend/index.html"
|
|
|
|
class Error404View(TemplateView):
|
|
template_name = "frontend/404.html" |