51 lines
2.6 KiB
HTML
51 lines
2.6 KiB
HTML
{% if postos | length > 0 %}
|
|
{% for posto in postos %}
|
|
<div class="row">
|
|
{% if posto.root_post %}
|
|
<div class="card s4 deep-orange accent-4 darken-1">
|
|
{% else %}
|
|
<div class="card s4 blue-grey darken-1">
|
|
{% endif %}
|
|
<div class="row" id="post-{{ posto._key }}">
|
|
<div class="col s4">
|
|
<div class="card-image">
|
|
<div class="hex-main">
|
|
<div class="hex-container">
|
|
<a href="https://loremflickr.com/g/320/240/paris" target="_blank" ">
|
|
<img src="https://loremflickr.com/g/320/240/paris">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col s8">
|
|
<div class="card-content white-text">
|
|
<span class="card-title">#{{ posto._key }}
|
|
<span class="new badge blue" data-badge-caption="">Ответов: {{ posto.answers_num }}</span>
|
|
<span class="new badge red" data-badge-caption="">Длина треда: {{ posto.children_num }}</span>
|
|
</span>
|
|
|
|
{% if posto.parent_post %}
|
|
<a class="card-action" href="#post-{{ posto.parent_post }}"> >>{{ posto.parent_post }} </a>
|
|
{% endif %}
|
|
<p>{{ posto.texto }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="col s12">
|
|
<div class="card-action right">
|
|
<!-- <a href="#" hx-post="/post_my_post/{{ posto._key }}" hx-target="#neu-posts" >Answer me!</a> -->
|
|
<a href="#answer-post" hx-post="/answer_post/{{ posto._key }}" hx-target="#answer-post" >Ответить этому.</a>
|
|
</div>
|
|
{% if posto.answers_list | length > 0 %}
|
|
{% for ans in posto.answers_list %}
|
|
<div class="card-action right">
|
|
<a href="#post-{{ ans }}">>>{{ posto.ans }}</a>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %} |