summaryrefslogtreecommitdiff
path: root/views/message_outbox.ejs
blob: c7ff379d6efb1b1e9f9626289f4569d5083c725d (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: "Outbox" }) %>
<script>
function delete_all() {
	let warning = "Are you sure you want to delete ALL the messages?";
	if (window.confirm(warning))
		window.location.href = "/outbox/delete";
}
</script>
<table class="post">
<tr><th>To<th>Subject<th>Date
<% if (messages.length > 0) { messages.forEach((row) => { %>
<tr class="<%- row.read ? "read" : "unread" %>">
<td class="author"><a href="/user/<%- row.to_name %>"><%= row.to_name %></a>
<td class="subject"><a href="/message/read/<%- row.message_id %>"><%= row.subject %></a>
<td class="time"><%= row.time %>
<% }); } else { %>
<tr><td colspan="3">No messages</td>
<% } %>
</table>
<p>
<button onclick="delete_all()">Delete all</button>