12 lines
190 B
Python
12 lines
190 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class IndexView(TemplateView):
|
|
"""
|
|
View for the Index page.
|
|
"""
|
|
|
|
template_name = "home/index.html"
|