jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
649 B

mixin mypermissions(jsonPermissions, boardOnly=false)
- const permissionKeys = boardOnly ? Object.keys(jsonPermissions).filter(p => manageBoardBits.includes(parseInt(p))) : Object.keys(jsonPermissions)
for bit, index in permissionKeys
if jsonPermissions[bit].title && index > 0
hr(size=1)
h4.mv-5 #{jsonPermissions[bit].title}
if jsonPermissions[bit].subtitle
p #{jsonPermissions[bit].subtitle}
.row
label.postform-style.ph-5.notallowed
input(type='checkbox' name=`permission_bit_${bit}` value=bit checked=jsonPermissions[bit].state disabled=true)
.rlabel #{jsonPermissions[bit].label}
p #{jsonPermissions[bit].desc}