12 lines
248 B
HTML
12 lines
248 B
HTML
{% if reports|length != 0 %}
|
|
{% for report in reports %}
|
|
|
|
{% include 'component/report.html' with report=report %}
|
|
|
|
{% endfor %}
|
|
|
|
<div hx-get="/reports?page={{ next }}"
|
|
hx-trigger="revealed"
|
|
hx-swap="outerHTML">
|
|
|
|
{% endif %}
|