X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/eec9e29c963bc20e4e968d5aefd7cc22ca1cbeba..e7ddfe10846f89b5eeec4bf4f4dc03057a744009:/app/views/messages/_message_summary.html.erb
diff --git a/app/views/messages/_message_summary.html.erb b/app/views/messages/_message_summary.html.erb
index 3b732f7be..4a552e83e 100644
--- a/app/views/messages/_message_summary.html.erb
+++ b/app/views/messages/_message_summary.html.erb
@@ -1,8 +1,13 @@
">
- <%= link_to message_summary.sender.display_name, user_path(message_summary.sender) %> |
- <%= link_to message_summary.title, message_path(message_summary) %> |
- <%= l message_summary.sent_on, :format => :friendly %> |
- <%= button_to t(".unread_button"), message_mark_path(message_summary, :mark => "unread"), :remote => true %> |
- <%= button_to t(".read_button"), message_mark_path(message_summary, :mark => "read"), :remote => true %> |
- <%= button_to t(".destroy_button"), message_path(message_summary, :referer => request.fullpath), :method => :delete, :remote => true %> |
+ <%= link_to message_summary.sender.display_name, user_path(message_summary.sender) %> |
+ <%= link_to message_summary.title, message_path(message_summary) %> |
+ <%= l message_summary.sent_on, :format => :friendly %> |
+
+ <%= button_to t(".unread_button"), message_mark_path(message_summary, :mark => "unread"), :remote => true, :class => "btn btn-sm btn-primary", :form => { :class => "inbox-mark-unread", :hidden => !message_summary.message_read? } %>
+ <%= button_to t(".read_button"), message_mark_path(message_summary, :mark => "read"), :remote => true, :class => "btn btn-sm btn-primary", :form => { :class => "inbox-mark-read", :hidden => message_summary.message_read? } %>
+ <%= button_to t(".destroy_button"), message_path(message_summary, :referer => request.fullpath), :method => :delete, :remote => true, :class => "btn btn-sm btn-danger", :form_class => "inbox-destroy" %>
+ <% if message_summary.muted? %>
+ <%= button_to t(".unmute_button"), message_unmute_path(message_summary), :method => :patch, :class => "btn btn-sm btn-secondary" %>
+ <% end %>
+ |