35626-vm/core/views.py
Flatlogic Bot 22cb958687 v1
2025-11-10 17:43:01 +00:00

7 lines
171 B
Python

from django.shortcuts import render
def index(request):
"""Render the main dashboard page."""
context = {}
return render(request, "core/index.html", context)