X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/fa7b3022a8a0a07ffae62973af0548f90ad82f2a..76bc5eba0617e36ebb853d24212543d0e1d4904d:/app/views/message/read.html.erb?ds=sidebyside
diff --git a/app/views/message/read.html.erb b/app/views/message/read.html.erb
index 65f429daf..668094d33 100644
--- a/app/views/message/read.html.erb
+++ b/app/views/message/read.html.erb
@@ -1,11 +1,11 @@
-<% if @user == @message.recipient %>
+<% if current_user == @message.recipient %>
<% content_for :heading do %>
<%= user_thumbnail_tiny @message.sender %>
- <%= link_to h(@message.sender.display_name), :controller => 'user', :action => 'view', :display_name => @message.sender.display_name %>
+ <%= link_to h(@message.sender.display_name), user_path(@message.sender) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -14,9 +14,9 @@
<%= @message.body.to_html %>
- <%= button_to t('message.read.reply_button'), {:controller => 'message', :action => 'reply', :message_id => @message.id}, :class => 'reply-button' %>
- <%= button_to t('message.read.unread_button'), {:controller => 'message', :action => 'mark', :message_id => @message.id, :mark => 'unread'}, :class => 'mark-unread-button' %>
- <%= button_to "Delete", {:controller => 'message', :action => 'delete', :message_id => @message.id}, :class => 'delete-button' %>
+ <%= button_to t('.reply_button'), {:controller => 'message', :action => 'reply', :message_id => @message.id}, :class => 'reply-button' %>
+ <%= button_to t('.unread_button'), {:controller => 'message', :action => 'mark', :message_id => @message.id, :mark => 'unread'}, :class => 'mark-unread-button' %>
+ <%= button_to t('.delete_button'), {:controller => 'message', :action => 'delete', :message_id => @message.id}, :class => 'delete-button' %>
<% else %>
@@ -24,7 +24,7 @@
<%= user_thumbnail_tiny @message.recipient %>
- <%= link_to h(@message.recipient.display_name), :controller => 'user', :action => 'view', :display_name => @message.recipient.display_name %>
+ <%= link_to h(@message.recipient.display_name), user_path(@message.recipient) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -36,5 +36,5 @@
<% end %>
- <%= link_to t('message.read.back'), {:controller => 'message', :action => 'outbox', :display_name => @user.display_name }, :class => "button deemphasize" %>
+ <%= link_to t('.back'), {:controller => 'message', :action => 'outbox', :display_name => current_user.display_name }, :class => "button deemphasize" %>