You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inventory-app/templates/history_item_fragment.html

9 lines
171 B

{% for item in items %}
<article id="item-{{item.id}}-card">
<div class="grid">
<p>{{ item.item }}</p>
<p>{{ item.amount }}</p>
</div>
</article>
{% endfor %}

Powered by TurnKey Linux.