diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app.py b/app.py index d5b0c8c..2653dde 100644 --- a/app.py +++ b/app.py @@ -144,5 +144,13 @@ def faccets(): return render_template("faccet_list.html", faccet=faccet_list) +@app.route("/thread/<int:post_id>") +@login_required +def thread(post_id): + thread = Post.get(Post.id == post_id) + pdx = get_replies(post_id) + return render_template("view_thread.html", thread=thread, pdx=pdx) + + if __name__ == "__main__": app.run(debug=True, port=5052) |