2024-03-04 16:59:44 +01:00
|
|
|
{% import "includes/macros" as macros %}
|
|
|
|
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="max-w-screen-lg w-full">
|
|
|
|
<h1 class="h1">List - Result</h1>
|
2024-03-04 23:11:44 +01:00
|
|
|
<ol>
|
|
|
|
{% for person in result %}<li>{{ person }}</li>{% endfor %}
|
|
|
|
</ol>
|
2024-03-04 16:59:44 +01:00
|
|
|
</div>
|
|
|
|
{% endblock content %}
|