eBooru/app/views/dmails/show.html.erb
Donovan Daniels 6b2b2cfc14
[DMails] Add marking as unread (#620)
* [DMails] Add marking as unread

* Tweak wording to be same as "Mark all as read", dmail capitalization
2024-02-23 16:39:59 +01:00

48 lines
1.8 KiB
Plaintext

<div id="c-dmails">
<div id="a-show">
<div class="dmail">
<h1>Show Message</h1>
<h2><%= @dmail.title %></h2>
<ul style="margin-bottom: 1em;">
<li><strong>Sender</strong>: <%= link_to_user @dmail.from %></li>
<li><strong>Recipient</strong>: <%= link_to_user @dmail.to %></li>
<li><strong>Date</strong>: <%= compact_time(@dmail.created_at) %></li>
<% if CurrentUser.is_admin? %>
<li><strong>Sender IP</strong>: <%= link_to_ip @dmail.creator_ip_addr %></li>
<% end %>
</ul>
<h3>Body</h3>
<div class="dtext-container">
<%= format_text(@dmail.body) %>
<% if @dmail.is_automated? %>
<p class="info">
This is an automated message. Responses will not be seen. If you have any questions either message a moderator or ask in the forum.
</p>
<% end %>
</div>
<p>
<%= link_to "Respond", new_dmail_path(:respond_to_id => @dmail) %>
| <%= link_to "Forward", new_dmail_path(:respond_to_id => @dmail, :forward => true) %>
| <%= link_to "Filter messages like these", edit_maintenance_user_dmail_filter_path(:dmail_id => @dmail.id) %>
<% if @dmail.owner_id == CurrentUser.id %>
| <%= link_to "Delete", dmail_path(@dmail), method: :delete, data: { confirm: "Are you sure you want to delete this DMail?" } %>
<% end %>
<% if @dmail.to_id == CurrentUser.id %>
| <%= link_to "Mark as unread", mark_as_unread_dmail_path(@dmail), method: :put, data: { confirm: "Are you sure you want to mark this DMail as unread?" } %>
| <%= link_to "Report", new_ticket_path(disp_id: @dmail.id, qtype: 'dmail') %>
<% end %>
</p>
</div>
</div>
</div>
<%= render "secondary_links" %>
<% content_for(:page_title) do %>
Message - <%= @dmail.title %>
<% end %>