2024-06-12 22:56:08 +01:00

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"