remotes/1693045480750635534/spooky-22
Aevann1 2022-03-19 20:15:12 +02:00
parent 7910da3519
commit 28e9053499
1 changed files with 1 additions and 1 deletions

View File

@ -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)