azube/core/templates/htmx/reports.html

13 lines
248 B
HTML
Raw Normal View History

2024-12-04 11:41:57 +01:00
{% if reports|length != 0 %}
{% for report in reports %}
{% include 'component/report.html' with report=report %}
2024-12-04 16:36:57 +01:00
{% endfor %}
2024-12-04 11:41:57 +01:00
<div hx-get="/reports?page={{ next }}"
hx-trigger="revealed"
hx-swap="outerHTML">
{% endif %}