9 lines
243 B
Python
9 lines
243 B
Python
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" |