summaryrefslogtreecommitdiff
path: root/views/message_inbox.ejs
blob: 16b0c46497802a73d5296e5e3eb2060328d0860f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%- include('header', { title: "Inbox" }) %>
<style>
table { width: 100%; max-width: 50em; }
tr.unread { background-color: lightyellow; }
td.from { width: 5em; }
td.time { text-align: right; width: 5em; }
td a { color:black; text-decoration: none; }
</style>
<p><a href="/message/send">Send message</a>
<table>
<tr><th>From<th>Subject<th>Date
<% if (messages.length > 0) { messages.forEach((row) => { %>
<tr class="<%- row.read ? "read" : "unread" %>">
<td class="nowrap from"><a href="/user/<%- row.from_name %>"><%= row.from_name %></a>
<td class="subject"><a href="/message/read/<%- row.message_id %>"><%= row.subject %></a>
<td class="nowrap time"><%= row.time %>
<% }); } else { %>
<tr><td colspan="3">No messages</td>
<% } %>
</table>
<p><a href="/outbox">Outbox</a>