diff --git a/files/routes/static.py b/files/routes/static.py index 2509e2b70..d85635ade 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -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 = g.db.query(User).filter(User.patron > 0).order_by(User.patron.desc()).all() + users = g.db.query(User).options(lazyload('*')).filter(User.patron > 0).order_by(User.patron.desc()).all() return render_template("patrons.html", v=v, users=users) @app.get("/admins")