<div class="col">
<p class='text-body-secondary mb-0'>
<%= link_to contact.display_name, contact %>
- <% if @user.home_location? and contact.home_location? %>
- <% distance = @user.distance(contact) %>
+ <% if current_user.home_location? and contact.home_location? %>
+ <% distance = current_user.distance(contact) %>
<% if distance < 1 %>
(<%= t ".m away", :count => (distance * 1000).round %>)
<% else %>
<% if changeset %>
<%= t(".latest_edit_html", :ago => friendly_date_ago(changeset.created_at)) %>
<% comment = changeset.tags["comment"].to_s == "" ? t("browse.no_comment") : changeset.tags["comment"] %>
- <q><%= link_to comment, changeset, :title => t("changesets.changeset.view_changeset_details") %></q>
+ <q><%= link_to comment, changeset, :title => t(".view_changeset_details") %></q>
<% else %>
- <%= t "changesets.changeset.no_edits" %>
+ <%= t ".no_edits" %>
<% end %>
</p>