expephalon/core/views/__init__.py

9 lines
282 B
Python
Raw Normal View History

from core.views.backend import *
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