Contents:
from django.views.generic import TemplateView [docs] class HomePageView(TemplateView): template_name = "pages/home.html" [docs] class AboutPageView(TemplateView): template_name = "pages/about.html"