<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>
<ul class='clearfix text-body-secondary'>
<li><%= link_to t("users.show.send message"), new_message_path(contact) %></li>
<li>
- <% if current_user.friends_with?(contact) %>
+ <% if current_user.follows?(contact) %>
<%= link_to t("users.show.unfollow"), follow_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :delete %>
<% else %>
<%= link_to t("users.show.follow"), follow_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>