summaryrefslogtreecommitdiffhomepage
path: root/apioforum/forum.py
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-05-22 15:12:30 +0000
committerubq323 <ubq323>2021-05-22 15:12:30 +0000
commiteb298f0c63eb6ac5547a6a7a0086e5e086ad5abc (patch)
tree4384e1036841a1b051832bffbee0ffb8a3b6cb8d /apioforum/forum.py
parent76120509b4ff409c6642b837be95ebc72c529d4b (diff)
thread view, also fix file extensions
Diffstat (limited to 'apioforum/forum.py')
-rw-r--r--apioforum/forum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apioforum/forum.py b/apioforum/forum.py
index 7fb1e57..c09b0e8 100644
--- a/apioforum/forum.py
+++ b/apioforum/forum.py
@@ -12,4 +12,4 @@ bp = Blueprint("forum", __name__, url_prefix="/")
def view_forum():
db = get_db()
threads = db.execute("SELECT * FROM threads ORDER BY updated DESC LIMIT 10;").fetchall()
- return render_template("view_forum.html.j2",threads=threads)
+ return render_template("view_forum.html",threads=threads)