blob: d8b6bc11b363700abbb0f70b252c79e644070d24 (
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
41
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
title Inbox
style.
.unread { font-weight: bold }
td a { display: block }
@media (max-width: 400px) {
td:nth-child(3) { display: none }
th:nth-child(3) { display: none }
}
body
include header
article
h1 Inbox
p
a(href="/message/send") Send message
table.wide.striped
thead
tr
th From
th Subject
th Date
tbody
each row in messages
- let subject = row.subject
- if (subject.length > 50) subject = subject.substring(0,40) + "..."
tr(class=row.is_read?"read":"unread")
td: a.black(href="/user/"+row.from_name)= row.from_name
td: a.black(href="/message/read/"+row.message_id)= subject
td.w= human_date(row.time)
else
tr
td(colspan=3) No messages.
p
a(href="/message/outbox") Outbox
|