mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2025-08-09 20:14:01 +00:00
order by gmlevel
This commit is contained in:
@@ -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:
|
||||||
|
Reference in New Issue
Block a user