This commit is contained in:
Aevann1 2021-08-22 21:11:43 +02:00
parent 90f258b18f
commit 16e7d38f55

View file

@ -44,7 +44,7 @@ def participation_stats(v):
@auth_desired
def patrons(v):
if v and v.is_banned and not v.unban_utc: return render_template("seized.html")
users = [x for x in 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()).all()
return render_template("patrons.html", v=v, users=users)
@app.get("/admins")