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