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.

44 lines
1009 B

extends ../layout.pug
block head
script(src='/js/theme.js')
title /#{board._id}/ - Logs for #{startDate.toDateString()}
block content
include ../includes/logheader.pug
br
include ../includes/stickynav.pug
nav.pages
a(href=`/${board._id}/index.html`) [Index]
|
a(href=`/${board._id}/catalog.html`) [Catalog]
|
a(href=`/${board._id}/banners.html`) [Banners]
|
a.bold(href=`/${board._id}/logs.html`) [Logs]
hr(size=1)
.table-container.flex-center.mv-10.text-center
table
tr
th Date
th User
th Actions
th Post IDs
th Log Message
for log in logs
tr
td #{log.date.toLocaleString(undefined, {hour12:false})}
td #{log.user}
td #{log.actions}
td #{log.postIds}
td #{log.message || '-'}
hr(size=1)
nav.pages
a(href=`/${board._id}/index.html`) [Index]
|
a(href=`/${board._id}/catalog.html`) [Catalog]
|
a(href=`/${board._id}/banners.html`) [Banners]
|
a.bold(href=`/${board._id}/logs.html`) [Logs]