feat: migrate /images page to new typed methods

This commit is contained in:
Jef Roosens 2025-01-26 15:46:53 +01:00
parent 4e92c02e63
commit b17c2e7df6
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
7 changed files with 74 additions and 26 deletions

View file

@ -0,0 +1,9 @@
{% import "components/plant.html" as comp_plant %}
<article>
<p>Date taken: {{ item.0.date_taken }}</p>
<p>Note: {{ item.0.note }}</p>
<p>Plant: {{ comp_plant::name(plant=item.1) }}</p>
<a href="/images/{{ item.0.id }}/original" target="_blank">
<img src="/images/{{ item.0.id }}/thumb">
</a>
</article>