flask-htmx-board1/templates/i-posts.html
Simple_Not 974e1f52d6
All checks were successful
continuous-integration/drone/push Build is passing
check posts
2023-07-13 19:59:56 +10:00

7 lines
160 B
HTML

{% if postos | length > 0 %}
{% for posto in postos %}
<div class="posto">
{{ posto.texto }}
</div>
{% endfor %}
{% endif %}