flask-htmx-board1/templates/board.html

39 lines
1.0 KiB
HTML
Raw Normal View History

2023-07-03 23:18:37 +10:00
{% extends "base.html" %}
{% block content %}
<div class="content">
2023-07-03 23:22:57 +10:00
<p>Вы тут: {{board_id}}</p>
2023-07-03 23:18:37 +10:00
</div>
<nav>
2023-07-03 23:22:57 +10:00
<a routerLink = "/">glavnaya</a>
2023-07-03 23:18:37 +10:00
<br>
Доски:
<div class="boards">
<ul>
{% for board in boards %}
2023-07-03 23:19:54 +10:00
<li><a href="/boards/{{board}}">/{{board}}</a></li>
2023-07-03 23:18:37 +10:00
{% endfor %}
</ul>
</div>
</nav>
<table class="border-collapse w-small w-2/3 mx-auto">
<thead>
<tr>
<th class="p-3 font-bold uppercase bg-gray-200 text-gray-600 border border-gray-300 hidden lg:table-cell">#</th>
</tr>
</thead>
<tbody id="thread-results">
2023-07-03 23:22:11 +10:00
{% 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 %}
2023-07-03 23:18:37 +10:00
</tbody>
</table>
{% endblock content %}