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

23 lines
778 B

{% if items.len() > 0 %}
<div class="mx-auto ">
<div class="flex flex-col">
{% for item in items %}
<div class="mb-4 mx-1 flex flex-row">
<div class="basis-1/2">
<a class="font-medium text-paynes-gray dark:text-paynes-gray hover:underline"
href="/item/{{item.id}}/" hx-push-url="true">
{{ item.name }}
</a>
</div>
<div class="basis-1/4">
Count: <span id="item-{{item.id}}-count" hx-get="/item/{{item.id}}/count" hx-trigger="load">0</span>
</div>
<div class="basis-1/4">
Reorder Point: {{ item.reorder_point }}
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}

Powered by TurnKey Linux.