X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/87918595da1e1fad2ddd7aa62f9fc537dff657ff..f906373be251d79988335e96e8046c7f001c613b:/app/views/user/_contact.html.erb diff --git a/app/views/user/_contact.html.erb b/app/views/user/_contact.html.erb index 08b982cd7..123f511d2 100644 --- a/app/views/user/_contact.html.erb +++ b/app/views/user/_contact.html.erb @@ -10,20 +10,20 @@ <%= user_thumbnail contact %>

- <%= link_to h(contact.display_name), :controller => 'user', :action => 'view', :display_name => contact.display_name %> - <% if @this_user.home_lon and @this_user.home_lat and contact.home_lon and contact.home_lat %> - <% distance = @this_user.distance(contact) %> + <%= link_to h(contact.display_name), user_path(contact) %> + <% if @user.home_lon and @user.home_lat and contact.home_lon and contact.home_lat %> + <% distance = @user.distance(contact) %> <% if distance < 1 %> - (<%= t 'user.view.m away', :count => (distance * 1000).round %>) + (<%= t 'user.show.m away', :count => (distance * 1000).round %>) <% else %> - (<%= t 'user.view.km away', :count => distance.round %>) + (<%= t 'user.show.km away', :count => distance.round %>) <% end %> <% end %>

<% changeset = contact.changesets.first %> <% if changeset %> - <%= t('user.view.latest edit', :ago => t('user.view.ago', :time_in_words_ago => time_ago_in_words(changeset.created_at))) %> + <%= t('user.show.latest edit', :ago => t('user.show.ago', :time_in_words_ago => time_ago_in_words(changeset.created_at))) %> <% comment = changeset.tags['comment'].to_s != '' ? changeset.tags['comment'] : t('browse.no_comment') %> "<%= link_to(comment, {:controller => 'browse', :action => 'changeset', :id => changeset.id}, @@ -35,12 +35,12 @@