X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/25f27a753f6a79bc1ae494e42cf03b9880d0bdcd..045209fade19a2ef04c2bec7a39120f9369a6965:/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 6ed41a0e0..81ef48402 100644
--- a/app/views/messages/_message_summary.html.erb
+++ b/app/views/messages/_message_summary.html.erb
@@ -1,8 +1,13 @@
-
">
- <%= link_to h(message_summary.sender.display_name), user_path(message_summary.sender) %> |
- <%= link_to h(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.sender.display_name, user_path(message.sender) %> |
+ <%= link_to message.title, message_path(message) %> |
+ <%= l message.sent_on, :format => :friendly %> |
+
+ <%= button_to t(".unread_button"), message_mark_path(message, :mark => "unread"), :class => "btn btn-sm btn-primary", :form => { :data => { :turbo => true }, :class => "inbox-mark-unread", :hidden => !message.message_read? } %>
+ <%= button_to t(".read_button"), message_mark_path(message, :mark => "read"), :class => "btn btn-sm btn-primary", :form => { :data => { :turbo => true }, :class => "inbox-mark-read", :hidden => message.message_read? } %>
+ <%= button_to t(".destroy_button"), message_path(message, :referer => request.fullpath), :method => :delete, :class => "btn btn-sm btn-danger", :form => { :data => { :turbo => true }, :class => "destroy-message" } %>
+ <% if message.muted? %>
+ <%= button_to t(".unmute_button"), message_unmute_path(message), :method => :patch, :class => "btn btn-sm btn-secondary", :form => { :data => { :turbo => true } } %>
+ <% end %>
+ |