pkmntrade.club/pages/views.py
2018-02-15 12:28:05 -05: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'