10 lines
244 B
Python
Raw Normal View History

2022-12-30 22:38:51 +01:00
from django.shortcuts import render
from django.views.generic import TemplateView
# Create your views here.
class HomePageView(TemplateView):
template_name = "home.html"
class AboutPageView(TemplateView):
template_name = "about.html"