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/catalog/catalog-item-table.html

18 lines
419 B

<div class="mx-auto">
<div class="flex flex-col">
{% for item in items %}
<div class="mx-1 mb-4 flex flex-row">
<div class="basis-1/2">
<a
class="font-medium text-paynes-gray hover:underline dark:text-paynes-gray"
href="/item/{{item.id}}/"
hx-push-url="true"
>
{{ item.name }}
</a>
</div>
</div>
{% endfor %}
</div>
</div>

Powered by TurnKey Linux.