50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="content">
|
|
<p>Вы тут: /{{board_id}}</p>
|
|
</div>
|
|
|
|
|
|
<nav>
|
|
<a href="/">glavnaya</a>
|
|
<br>
|
|
Доски:
|
|
<div class="boards">
|
|
<ul>
|
|
{% for board in boards %}
|
|
<li><a href="/boards/{{board}}">/{{board}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
<table class="pure-table-odd">
|
|
<thead>
|
|
<tr>
|
|
<th class="">номер треда</th>
|
|
<th class="">номер поста</th>
|
|
<th class="">автор(ка)</th>
|
|
<th class="">пикча эта ваша</th>
|
|
<th class="">текст</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="thread-results">
|
|
{% for thread in board_threads %}
|
|
<tr class="">
|
|
<td class="">{{thread.thread_num}}</td>
|
|
<td class="">{{thread.post_num}}</td>
|
|
<td class="">{{thread.name}}</td>
|
|
<td class="">
|
|
<img src="https://static.vdk2ch.ru/thread-pics/{{thread.pic_link}}" alt="" width="200" height="200">
|
|
</td>
|
|
<td class="">{{thread.txt}}</td>
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock content %} |