openstreetmap-website/app/views/message/read.rhtml
Tom Hughes 895eb829c9 Backout message deletion functionality as it has unfortunate side effects
as it also removes the message from the sender's outbox.
2008-05-06 16:35:24 +00:00

70 lines
1.7 KiB
Text

<% if @user == @message.recipient %>
<h2>Reading your messages</h2>
<table>
<tr>
<th align="right">From</th>
<td>
<% if @message.sender.image %>
<%= image_tag url_for_file_column(@message.sender, "image") %>
<% end %>
<%= link_to h(@message.sender.display_name), :controller => 'user', :action => 'view', :display_name => @message.sender.display_name %></td>
</tr>
<tr>
<th align="right">Subject</th>
<td><%= h(@message.title) %></td>
</tr>
<tr>
<th align="right">Date</th>
<td><%= @message.sent_on %></td>
</tr>
<tr>
<th></th>
<td><%= htmlize(@message.body) %></td>
</tr>
</table>
<br />
<table>
<tr>
<td><%= button_to 'Reply', :controller => 'message', :action => 'reply', :message_id => @message.id %></td>
<td><%= button_to 'Mark as unread', :controller => 'message', :action => 'mark', :message_id => @message.id, :mark => 'unread' %></td>
<td><%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %></td>
</tr>
</table>
<% else %>
<h2>Reading your sent messages</h2>
<table>
<tr>
<th align="right">To</th>
<td><%= link_to h(@message.recipient.display_name), :controller => 'user', :action => 'view', :display_name => @message.recipient.display_name %></td>
</tr>
<tr>
<th align="right">Subject</th>
<td><%= h(@message.title) %></td>
</tr>
<tr>
<th align="right">Date</th>
<td><%= @message.sent_on %></td>
</tr>
<tr>
<th></th>
<td><%= htmlize(@message.body) %></td>
</tr>
</table>
<br />
<table>
<tr>
<td><%= link_to 'Back to outbox', :controller => 'message', :action => 'outbox', :display_name => @user.display_name %></td>
</tr>
</table>
<% end %>