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.
 
 
 
 
 

22 lines
537 B

extends ../layout.pug
include ../mixins/post.pug
block head
title Login
block content
h1.board-title /#{board._id}/ - #{board.name}
h4.board-description Management Panel
hr(size=1)
form(action='/forms/board/'+board._id+'/posts' method='POST' enctype='application/x-www-form-urlencoded')
input(type='hidden' name='_csrf' value=csrf)
if posts.length === 0
p No reports.
hr(size=1)
for post in posts
section.thread
+post(board, post)
hr(size=1)
section.delete-wrapper
input(type='submit', value='delete')