summaryrefslogtreecommitdiff
path: root/views/message_read.ejs
blob: b2f8227c4a7c2e18be6784cc4cc6db3426d8e663 (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
<%- include('header', { title: message.subject }) %>
<style>
th{font-weight:normal;width:4em;}
</style>
<script>
function delete_message(id) {
	let warning = "Are you sure you want to DELETE this message?";
	if (window.confirm(warning))
		window.location.href = "/message/delete/" + id;
}
function reply_message(id) {
	window.location.href = "/message/reply/" + id;
}
</script>
<table>
<tr><th>From:<td><a href="/user/<%- message.from_name %>"><%= message.from_name %></a>
<tr><th>To:<td><a href="/user/<%- message.to_name %>"><%= message.to_name %></a>
<tr><th>Date:<td><%= message.time %>
<tr><td colspan="2" class="body"><%- message.body %></td>
</table>
<p>
<% if ( 1 || message.from_id !== user.user_id ) { %>
<button onclick="reply_message(<%- message.message_id %>)">Reply</button>
<% } %>
<button onclick="delete_message(<%- message.message_id %>)">Delete</button>