re ans-post
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2024-01-30 01:51:31 +10:00
parent a84da0a6f9
commit a325ea91fe

View File

@ -18,10 +18,10 @@
<div class="col s4 ">
<div class="card">
<div class="card-content">
{% if boards[0] | length > 0 %}
{% if boards | length > 0 %}
<p>Доски:</p>
{% for board in boards[0] %}
<a href="/db_posts" class="lime-text red collection-item" style="padding: 2px 2px;">board</a>
{% for board in boards %}
<a href="/db_posts" class="lime-text red collection-item" style="padding: 2px 2px;">{{board}}</a>
{% endfor %}
{% endif %}
</div>