2023-07-03 23:18:37 +10:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="content">
|
2023-07-03 23:23:03 +10:00
|
|
|
<p>Вы тут: /{{board_id}}</p>
|
2023-07-03 23:18:37 +10:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<nav>
|
2023-07-03 23:24:34 +10:00
|
|
|
<a href="/">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>
|
|
|
|
|
|
|
|
|
2023-07-03 23:47:48 +10:00
|
|
|
<table class="pure-table-odd">
|
2023-07-03 23:18:37 +10:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-07-03 23:47:48 +10:00
|
|
|
<th class="">номер треда</th>
|
|
|
|
<th class="">номер поста</th>
|
|
|
|
<th class="">автор(ка)</th>
|
|
|
|
<th class="">пикча эта ваша</th>
|
|
|
|
<th class="">текст</th>
|
2023-07-03 23:18:37 +10:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="thread-results">
|
2023-07-03 23:25:25 +10:00
|
|
|
{% for thread in board_threads %}
|
2023-07-03 23:47:48 +10:00
|
|
|
<tr class="">
|
|
|
|
<td class="">{{thread.thread_num}}</td>
|
|
|
|
<td class="">{{thread.post_num}}</td>
|
|
|
|
<td class="">{{thread.name}}</td>
|
|
|
|
<td class="">
|
2023-07-03 23:45:49 +10:00
|
|
|
<img src="https://static.vdk2ch.ru/thread-pics/{{thread.pic_link}}" alt="" width="200" height="200">
|
|
|
|
</td>
|
2023-07-03 23:47:48 +10:00
|
|
|
<td class="">{{thread.txt}}</td>
|
2023-07-03 23:45:49 +10:00
|
|
|
|
2023-07-03 23:22:11 +10:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2023-07-03 23:18:37 +10:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock content %}
|