remotes/1693045480750635534/spooky-22
Aevann1 2021-08-22 21:11:43 +02:00
parent 1adc1c3cdb
commit 75850e8c18
1 changed files with 1 additions and 1 deletions

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")