feat: implement typed List template page for plants

This commit is contained in:
Jef Roosens 2025-01-26 15:24:51 +01:00
parent 1b22c8d118
commit 4e92c02e63
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
10 changed files with 208 additions and 36 deletions

18
templates/list/ul.html Normal file
View file

@ -0,0 +1,18 @@
<h1>{{ heading }}</h1>
<ul id="items">
{% for item in items %}
{{ item | safe }}
{% endfor %}
{% if next_page_url %}
<div
aria-busy="true"
hx-get="{{ next_page_url }}"
hx-select="#items > *"
hx-trigger="revealed"
hx-target="this"
hx-swap="outerHTML">
</div>
{% endif %}
</ul>