blob: 28563d8609a2ed7fde54c808424a015030d34f3f (
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
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
title Inbox
style .unread { background-color: lightyellow }
body
include header
article
h1 Inbox
p
a(href="/message/send") Send message
table
tr
th From
th Subject
th Date
each row in messages
tr(class=row.read?"read":"unread")
td: a(href="/user/"+row.from_name)= row.from_name
td: a(href="/message/read/"+row.message_id)= row.subject
td= row.time
else
tr
td(colspan=3) No messages.
p
a(href="/outbox") Outbox
|