flask-htmx-board1/templates/thread.html
Simple_Not a9cabbe7d8
All checks were successful
continuous-integration/drone/push Build is passing
some structure
2023-07-03 23:18:37 +10:00

7 lines
355 B
HTML

{% if threads|length>0 %}
{% for thread in threads %}
<tr class="bg-white lg:hover:bg-gray-100 flex lg:table-row flex-row lg:flex-row flex-wrap lg:flex-no-wrap mb-10 lg:mb-0">
<td class="w-full lg:w-auto p-3 text-gray-800 text-center border border-b block lg:table-cell relative lg:static">{{thread}}</td>
</tr>
{% endfor %}
{% endif %}