blob: f02c2f76f44587c5fb2e6d96f8b065669eb3268f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//- 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= 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
|