5 lines
106 B
Python
5 lines
106 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class Home(TemplateView):
|
|
template_name = "home.html"
|