7 lines
171 B
Python
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)
|