From e3c13421a48b84cf7cf67d42f3ab8823f4eb52f5 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 19 Mar 2022 20:15:12 +0200 Subject: [PATCH] fds --- files/routes/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/static.py b/files/routes/static.py index 5d562ae59..bb746672b 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -248,7 +248,7 @@ def log(v): next_exists=len(actions)>25 actions=actions[:25] - admins = [x[0] for x in g.db.query(User.username).filter(User.admin_level > 1).all()] + admins = [x[0] for x in g.db.query(User.username).filter(User.admin_level > 1).order_by(User.username).all()] return render_template("log.html", v=v, admins=admins, types=types, admin=admin, type=kind, actions=actions, next_exists=next_exists, page=page)