check posts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-13 19:57:40 +10:00
parent f1d5ef70ad
commit b92b5c63b1

2
app.py
View File

@ -60,7 +60,7 @@ def page_board(board_id):
@app.route("/db_posts") @app.route("/db_posts")
def page_posts_from_db(): def page_posts_from_db():
posts = db.collection('posts') postos = db.collection('posts')
postos = [ p for p in postos] postos = [ p for p in postos]
return render_template("interactive-posts.html", postos=postos) return render_template("interactive-posts.html", postos=postos)