forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-11-24 14:29:31 +02:00
parent 2f4acf4079
commit f69f6acfe0
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ def cached_chart():
@app.get("/paypigs")
@admin_level_required(3)
def patrons(v):
users = g.db.query(User).filter(User.patron > 0).order_by(User.patron.desc()).all()
users = g.db.query(User).filter(User.patron > 0).order_by(User.patron.desc(), User.id).all()
return render_template("patrons.html", v=v, users=users)