calathea/templates/card/image.html

10 lines
332 B
HTML
Raw Normal View History

{% 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>