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.
18 lines
419 B
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>
|