This commit is contained in:
parent
9488d197dc
commit
3361533b62
17
app.py
17
app.py
@ -66,9 +66,20 @@ def page_posts_from_db():
|
|||||||
return render_template("interactive-posts.html", postos=postos)
|
return render_template("interactive-posts.html", postos=postos)
|
||||||
|
|
||||||
|
|
||||||
# @app.route('/post_my_post', method=['POST'])
|
@app.route('/post_my_post', method=['POST'])
|
||||||
# def post_a_post():
|
def post_a_post():
|
||||||
# pass
|
|
||||||
|
|
||||||
|
postos = db.collection('posts')
|
||||||
|
novenkiy = {
|
||||||
|
'texto': 'next post is this',
|
||||||
|
}
|
||||||
|
|
||||||
|
#### TODO проверить как-то по-умному что мы таки его добавили
|
||||||
|
metadata = postos.insert(novenkiy, overwrite_mode='update')
|
||||||
|
|
||||||
|
return render_template("i-posts.html", postos=[novenkiy])
|
||||||
|
|
||||||
|
|
||||||
# @app.route('/post_my_file', method=['POST'])
|
# @app.route('/post_my_file', method=['POST'])
|
||||||
# def post_a_file():
|
# def post_a_file():
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
{% if postos | length > 0 %}
|
{% if postos | length > 0 %}
|
||||||
{% for posto in postos %}
|
{% for posto in postos %}
|
||||||
<div class="row">
|
|
||||||
<div class="col s12 m6">
|
<div class="col s12 m6">
|
||||||
{% if posto.root_post %}
|
{% if posto.root_post %}
|
||||||
<div class="card deep-orange accent-4 darken-1">
|
<div class="card deep-orange accent-4 darken-1">
|
||||||
@ -27,8 +26,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col s12">
|
<div class="col s12">
|
||||||
<div class="card-action right">
|
<div class="card-action right">
|
||||||
<a href="#">Answer me!</a>
|
<a href="#" hx-post="/post_my_post" hx-target="#neu-posts" >Answer me!</a>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -9,6 +9,9 @@
|
|||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
{% include 'i-posts.html' %}
|
<div class="row" id="neu-posts">
|
||||||
|
{% include 'i-posts.html' %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
@ -14,9 +14,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div id="particles-js"></div>
|
|
||||||
<script src="particles.js"></script>
|
|
||||||
|
|
||||||
<div id="multi-bg">
|
<div id="multi-bg">
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
Loading…
Reference in New Issue
Block a user