From: Andy Allan Date: Wed, 14 Jul 2021 17:54:23 +0000 (+0100) Subject: Ensure message destroy button has danger colour when showing the message, and add... X-Git-Tag: live~2132^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/0ab9359f9f1ed4b14e16d660e4ab6bf86f7f0164 Ensure message destroy button has danger colour when showing the message, and add button to show page when viewing sent messages --- diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 33156f51f..74c61669f 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -16,7 +16,7 @@
<%= link_to t(".reply_button"), message_reply_path(@message), :class => "btn btn-primary" %> <%= link_to t(".unread_button"), message_mark_path(@message, :mark => "unread"), :method => "post", :class => "btn btn-primary" %> - <%= link_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "btn btn-primary" %> + <%= link_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "btn btn-danger" %> <%= link_to t(".back"), inbox_messages_path, :class => "btn btn-link" %>
<% else %> @@ -31,6 +31,7 @@
<%= @message.body.to_html %>
+ <%= link_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "btn btn-danger" %> <%= link_to t(".back"), outbox_messages_path, :class => "btn btn-link" %>
<% end %>