This commit is contained in:
Aevann1 2021-09-19 23:06:48 +02:00
parent dcbf6753e9
commit e5996faf49
2 changed files with 24 additions and 0 deletions

View file

@ -90,6 +90,12 @@ def admins(v):
admins = g.db.query(User).options(lazyload('*')).filter_by(admin_level=6).order_by(User.coins.desc()).all()
return render_template("admins.html", v=v, admins=admins)
@app.get("/log")
@auth_desired
def log(v):
return render_template("modlog.html", v=v)
# @app.get("/log")
# @auth_desired
# def log(v):