This commit is contained in:
parent
f670bc9b2c
commit
25725646cb
1
app.py
1
app.py
@ -77,6 +77,7 @@ def post_a_post(post_key):
|
||||
#### TODO проверить как-то по-умному что мы таки его добавили
|
||||
metadata = postos.insert({
|
||||
'texto': 'next post is this',
|
||||
'parent_post': f'{post_key}'
|
||||
}, overwrite_mode='update')
|
||||
|
||||
metadata = db.collection('post_parents').insert({
|
||||
|
@ -20,6 +20,9 @@
|
||||
<div class="col s8">
|
||||
<div class="card-content white-text">
|
||||
<span class="card-title">#{{ posto._key }}
|
||||
{% if posto.parent_post %}
|
||||
<span class="new badge" data-badge-caption=""><a href="#post-{{ posto.parent_post }}">>{{ posto.parent_post }}</a></span>
|
||||
{% endif %}
|
||||
<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>
|
||||
|
Loading…
Reference in New Issue
Block a user