X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ff7ddb6b86bf918a9418af7382836b41594d45e4..8d7fca30de5429f50400c92d2560778ffcc58aea:/app/views/messages/show.html.erb
diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb
index ea4f5e40d..9ade68121 100644
--- a/app/views/messages/show.html.erb
+++ b/app/views/messages/show.html.erb
@@ -1,41 +1,37 @@
-<% if current_user == @message.recipient %>
- <% content_for :heading do %>
-
<%= h(@message.title) %>
- <% end %>
+<% content_for :heading do %>
+ <%= @message.title %>
+<% end %>
+<% if current_user == @message.recipient %>
<%= 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 %>
- <%= @message.body.to_html %>
+ <%= @message.body.to_html %>
-
- <%= button_to t(".reply_button"), message_reply_path(@message), :class => "reply-button" %>
- <%= button_to t(".unread_button"), message_mark_path(@message, :mark => "unread"), :class => "mark-unread-button" %>
- <%= button_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "destroy-button" %>
- <%= link_to t(".back"), inbox_messages_path, :class => "button deemphasize" %>
+
+ <%= 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-danger" %>
+ <%= link_to t(".back"), inbox_messages_path, :class => "btn btn-link" %>
-
<% else %>
-
-
<%= h(@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 %>
-
<%= @message.body.to_html %>
+
<%= @message.body.to_html %>
-