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.

72 lines
2.0 KiB

extends ../layout.pug
include ../mixins/globalmanagenav.pug
block head
title Accounts
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.mv-5 Accounts:
if accounts && accounts.length > 0
form.form-post.nogrow(action=`/forms/global/deleteaccounts` method='POST' enctype='application/x-www-form-urlencoded')
input(type='hidden' name='_csrf' value=csrf)
.table-container.flex-left.text-center
table
tr
th
th Username
th Own Boards
th Staff Boards
th Last Active
th Role
th Permissions
for account in accounts
tr
td: input(type='checkbox', name='checkedaccounts' value=account._id)
td #{account._id}
td
if account.ownedBoards.length > 0
for b in account.ownedBoards
a(href=`/${b}/index.html`) /#{b}/
|
else
| -
td
if account.staffBoards.length > 0
for b in account.staffBoards
a(href=`/${b}/index.html`) /#{b}/
|
else
| -
td
if account.lastActiveDate
time.reltime(datetime=account.lastActiveDate.toISOString()) #{account.lastActiveDate.toLocaleString(undefined, {hourCycle:'h23'})}
else
| -
td #{roleNameMap[account.permissions.toString('base64')] || 'Custom'}
td
if account._id !== user.username
a(href=`/globalmanage/editaccount/${account._id}.html`) [Edit]
else
a(href=`/mypermissions.html`) [View]
5 years ago
.pages.mv-5
include ../includes/pages.pug
h4.mv-5 Delete Selected:
input(type='submit', value='Delete')
else
p No results.