From 72be25f5b50d660ea75bcdbe5af06f2c32c9d63c Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Sun, 3 Apr 2022 13:42:06 -0500 Subject: [PATCH] order by gmlevel --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 485a48c..1b8aa22 100644 --- a/app/main.py +++ b/app/main.py @@ -28,7 +28,7 @@ def index(): @login_required def about(): """About Page""" - mods = Account.query.filter(Account.gm_level > 0).all() + mods = Account.query.filter(Account.gm_level > 0).order_by(Account.gm_level.desc()).all() online = 0 chars = CharacterInfo.query.all() for char in chars: