diff options
author | Matt Arnold | 2025-04-15 21:55:22 -0400 |
---|---|---|
committer | Matt Arnold | 2025-04-15 21:55:22 -0400 |
commit | 1f6e041e49754ae41db005f98df2685031ccaff0 (patch) | |
tree | f74fa30cde99976942fc5719e7c350451a09da0b /app.py | |
parent | e8880e73a23571acf47845b1e38292239c5d71b2 (diff) |
threaded view basically works now
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) |