This commit is contained in:
2024-03-04 16:55:33 +01:00
parent e0e970c6b9
commit ee45b654ae
5 changed files with 52 additions and 4 deletions

View File

@ -4,6 +4,10 @@
{% if flash %}{{ macros::alert(message=flash.1, type=flash.0, class="sm:col-span-2 lg:col-span-3") }}{% endif %}
<div class="max-w-screen-lg w-full">
<h1 class="h1">List - Result</h1>
{{result}}
<ol>
{% for person in result%}
<li>{{person}}</li>
{% endfor %}
</ol>
</div>
{% endblock content %}