Files
DEMO-AGENT/apps/scenarios/views.py

8 lines
180 B
Python

from django.shortcuts import render
from .services import list_scenarios
def index(request):
return render(request, "scenarios/index.html", {"scenarios": list_scenarios()})