//- vim:ts=4:sw=4:
doctype html
html
head
include head
title= message.subject
style.
.head {white-space:pre-wrap}
script.
function delete_message(id) {
let warning = "Are you sure you want to DELETE this message?"
if (window.confirm(warning))
window.location.href = "/message/delete/" + id
}
function reply_message(id) {
window.location.href = "/message/reply/" + id
}
body
include header
article
h1= message.subject
div.post
div.head
div.
From: #[a(href="/user/"+message.from_name)= message.from_name]
To: #[a(href="/user/"+message.to_name)= message.to_name]
div= human_date(message.time)
div.body!= message.body
p
if message.from_id !== user.user_id
button(onclick="reply_message("+message.message_id+")") Reply
button(onclick="delete_message("+message.message_id+")") Delete