initial, migrated to new structure
This commit is contained in:
9
django_project/pages/views.py
Normal file
9
django_project/pages/views.py
Normal file
@ -0,0 +1,9 @@
|
||||
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"
|
Reference in New Issue
Block a user