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.

32 lines
892 B

if bans.length === 0
p No bans.
else
input(type='hidden' name='_csrf' value=csrf)
include ../includes/bantable.pug
for ban in bans
+ban(ban)
.action-wrapper.mv-10
.row
.label Unban
label.postform-style.ph-5
input(type='radio' name='option' value='unban' checked='checked')
.row
.label Deny Appeal
label.postform-style.ph-5
input(type='radio' name='option' value='deny_appeal')
.row
.label Upgrade Ban
label.postform-style.ph-5.mr-1
input(type='radio' name='option' value='upgrade')
select(name='upgrade')
option(value='')
option(value='1') Narrow Range
option(value='2') Wide Range
.row
.label Edit Duration
label.postform-style.ph-5.mr-1
input(type='radio' name='option' value='edit')
input(type='text' name='ban_duration' placeholder='Ban duration e.g. 7d' autocomplete='off')
input(type='submit' value='Submit')