samey/templates/submit_post_details.html
2025-04-10 07:06:34 -03:00

8 lines
198 B
HTML

{% include "post_details.html" %}
<ul id="tags-list" hx-swap-oob="outerHTML">
{% for tag in tags %}
<li>
<a href="/posts?tags={{ tag.name }}">{{ tag.name }}</a>
</li>
{% endfor %}
</ul>