6 lines
119 B
Python
6 lines
119 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class HomeView(TemplateView):
|
|
template_name = "app_site/home.html"
|