mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-12 21:08:20 +00:00
order by gmlevel
This commit is contained in:
parent
63d5d2da87
commit
72be25f5b5
@ -28,7 +28,7 @@ def index():
|
|||||||
@login_required
|
@login_required
|
||||||
def about():
|
def about():
|
||||||
"""About Page"""
|
"""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
|
online = 0
|
||||||
chars = CharacterInfo.query.all()
|
chars = CharacterInfo.query.all()
|
||||||
for char in chars:
|
for char in chars:
|
||||||
|
Loading…
Reference in New Issue
Block a user