summaryrefslogtreecommitdiff
path: root/views/message_read.pug
blob: 65b845d456ce097e4ee14222927a43a63952898e (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
35
36
37
38
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title= message.subject
		style th { font-weight: normal; width: 4em; }
		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

			table
				tr
					th From:
					td: a(href="/user/"+message.from_name)= message.from_name
				tr
					th To:
					td: a(href="/user/"+message.to_name)= message.to_name
				tr
					th Date:
					td= message.time
				tr
					td.body(colspan=2)!= 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