mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-17 23:37:47 +02:00
7 lines
202 B
Python
7 lines
202 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
context = {"dashboard_data_active": "true"}
|
|
return render(request, 'dashboard/index.html', context)
|