pkmntrade.club/pages/views.py
2025-02-26 00:17:06 -08:00

9 lines
196 B
Python

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