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/item_list_fragment.html

9 lines
207 B

{% for item in items %}
<article>
<div class="grid">
<div><a href="/item/{{item.id}}/">{{ item.name }}</a></div>
<div>Reorder Point: {{ item.reorder_point }}</div>
</div>
</article>
{% endfor %}

Powered by TurnKey Linux.