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.

67 lines
1.7 KiB

extends ../layout.pug
include ../mixins/globalmanagenav.pug
block head
script(src='/js/all.js')
title Manage
block content
h1.board-title Global Management
br
+globalmanagenav('accounts')
hr(size=1)
.form-wrapper.flexleft
h4.no-m-p Search:
form.form-post.mv-5(action=`/globalmanage/accounts.html` method='GET')
input(type='hidden' value=page)
.row
.label Username
input(type='text' name='username' value=username)
.row
.label Board URI
input(type='text' name='uri' value=uri)
input(type='submit', value='Filter')
h4.no-m-p Accounts:
if accounts && accounts.length > 0
form.form-post(action=`/forms/global/editaccounts` method='POST' enctype='application/x-www-form-urlencoded')
input(type='hidden' name='_csrf' value=csrf)
.table-container.flex-left
table
tr
th
th Username
th Auth Level
th Own Boards
th Mod Boards
for account in accounts
tr
td: input(type='checkbox', name='checkedaccounts' value=account._id)
td #{account._id}
td #{account.authLevel}
td
if account.ownedBoards.length > 0
for b in account.ownedBoards
a(href=`/${b}/index.html`) /#{b}/
|
else
| -
td
if account.modBoards.length > 0
for b in account.modBoards
a(href=`/${b}/index.html`) /#{b}/
|
else
| -
.pages.mv-5
include ../includes/pages.pug
.row
.label Set Auth Level
input(type='number' name='auth_level')
.row
.label Delete Accounts
label.postform-style.ph-5
input(type='checkbox', name='delete_account', value='true')
input(type='submit', value='apply')
else
p No results.