expephalon/core/views/frontend/__init__.py

10 lines
328 B
Python
Raw Normal View History

from django.views.generic import TemplateView
from django.conf import settings
class IndexView(TemplateView):
template_name = f"{settings.EXPEPHALON_FRONTEND}/index.html"
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["title"] = "Home"
return context