8 lines
180 B
Python
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()})
|