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