6 lines
103 B
Python
6 lines
103 B
Python
from django.views import generic
|
|
|
|
|
|
class Index(generic.TemplateView):
|
|
template_name = 'index.html'
|