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.
 
 
 
 
 

41 lines
1.3 KiB

extends ../layout.pug
include ../mixins/post.pug
include ../mixins/ban.pug
include ../mixins/managenav.pug
include ../mixins/boardheader.pug
block head
title /#{board._id}/ - Recent Posts
block content
+boardheader('Recent Posts')
br
.wrapbar
+managenav('recent')
if page === 1 && !postId && !queryIp
.jsonly#livetext(data-view-raw-ip=(viewRawIp?'true':'false') data-room=`${board._id}-manage-recent-${viewRawIp === true ? 'raw' : 'hashed'}`)
.dot#livecolor
| Connecting...
input.postform-style.ml-5.di#updatepostsbutton(type='button' value='Update')
form(action=`/forms/board/${board._id}/modactions` method='POST' enctype='application/x-www-form-urlencoded')
input(type='hidden' name='_csrf' value=csrf)
if posts.length === 0
hr(size=1)
p No posts.
else
hr(size=1)
- const ip = viewRawIp === true ? posts[0].ip.raw : posts[0].ip.cloak;
if postId || (queryIp && queryIp === ip)
h4.no-m-p Post history for #{ip}
|
if permissions.get(Permissions.MANAGE_GLOBAL_GENERAL)
|
a(href=`/globalmanage/recent.html?ip=${encodeURIComponent(ip)}`) [See Global Post History]
hr(size=1)
for p in posts
.thread
+post(p, true, true)
hr(size=1)
.pages.mv-5
include ../includes/pages.pug
include ../includes/actionfooter_manage.pug