9 lines
No EOL
282 B
Python
9 lines
No EOL
282 B
Python
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 |