37095-vm/core/views.py
2025-12-20 22:54:20 +00:00

9 lines
179 B
Python

from django.shortcuts import render
def index(request):
context = {
"project_name": "ComplianceShield",
}
return render(request, "core/index.html", context)