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