summaryrefslogtreecommitdiff
path: root/views/message_outbox.pug
blob: f305d832cb8e6c783e2bc29e6167e7c3100cdf98 (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
39
40
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title Outbox
		style.
			td a { display: block }
		script.
			function delete_all() {
				let warning = "Are you sure you want to delete ALL the messages?"
				if (window.confirm(warning))
					window.location.href = "/message/delete/outbox"
			}
	body
		include header
		article
			h1 Outbox

			p
				a(href="/message/send") Send message

			table
				thead
					tr
						th From
						th Subject
						th Date
				tbody
					each row in messages
						tr
							td: a.black(href="/user/"+row.to_name)= row.to_name
							td: a.black(href="/message/read/"+row.message_id)= row.subject
							td= row.time
					else
						tr
							td(colspan=3) No messages.

			p
				button(onclick="delete_all()") Delete all