summaryrefslogtreecommitdiffhomepage
path: root/apioforum/forum.py
diff options
context:
space:
mode:
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)