X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4ec70f79944e3b946477c25d541ff35de4ddb0d1..c24c2e481cc6d27e76274ed4e32668a4690a7788:/app/views/messages/show.html.erb diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 4d2f6f6ce..080503f72 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -1,11 +1,11 @@ <% if current_user == @message.recipient %> <% content_for :heading do %> -

<%= h(@message.title) %>

+

<%= @message.title %>

<% end %>
<%= user_thumbnail_tiny @message.sender %> - <%= link_to h(@message.sender.display_name), user_path(@message.sender) %> + <%= link_to @message.sender.display_name, user_path(@message.sender) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -13,18 +13,20 @@
<%= @message.body.to_html %>
-
- <%= button_to t('.reply_button'), reply_message_path(@message), :class => 'reply-button' %> - <%= button_to t('.unread_button'), mark_message_path(@message, :mark => 'unread'), :class => 'mark-unread-button' %> - <%= button_to t('.destroy_button'), destroy_message_path(@message), :class => 'destroy-button' %> +
+ <%= 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(".back"), inbox_messages_path, :class => "btn btn-link" %> +
<% else %> -

<%= h(@message.title) %>

+

<%= @message.title %>

<%= user_thumbnail_tiny @message.recipient %> - <%= link_to h(@message.recipient.display_name), user_path(@message.recipient) %> + <%= link_to @message.recipient.display_name, user_path(@message.recipient) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -32,9 +34,8 @@
<%= @message.body.to_html %>
-
+
+ <%= link_to t(".back"), outbox_messages_path, :class => "btn btn-link" %> +
<% end %> - - <%= link_to t('.back'), outbox_path(current_user), :class => "button deemphasize" %> -