remotes/1693045480750635534/spooky-22
Aevann1 2021-07-25 16:58:45 +02:00
parent 0a8895adee
commit 486adfd619
1 changed files with 2 additions and 2 deletions

View File

@ -222,9 +222,9 @@ def mod_remove_username(bid, username, board, v):
@public("read")
def board_about_mods(v):
g.db.query(Board).first()
board = g.db.query(Board).first()
me = board.has_mod(v)
me = (v.admin_level == 6)
return {
"html":lambda:render_template("mods.html", v=v, b=board, me=me),