order by gmlevel

This commit is contained in:
Aaron Kimbre 2022-04-03 13:42:06 -05:00
parent 63d5d2da87
commit 72be25f5b5

View File

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