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