X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/acd72861ed8ad46d759a6e509f3e7c459db1a4f5..433464ecc2c3a6d265bd21c188662e319837f5b1:/app/views/user/_contact.html.erb
diff --git a/app/views/user/_contact.html.erb b/app/views/user/_contact.html.erb
index be1c24106..e0babce7e 100644
--- a/app/views/user/_contact.html.erb
+++ b/app/views/user/_contact.html.erb
@@ -1,14 +1,10 @@
- <% if contact.image %>
- <%= image_tag url_for_file_column(contact, "image"), :class => "user_thumbnail" %>
- <% else %>
- <%= image_tag "anon_small.png" %>
- <% end %>
+ <%= user_thumbnail contact %>
|
<%= link_to h(contact.display_name), :controller => 'user', :action => 'view', :display_name => contact.display_name %>
- <% if contact.home_lon and contact.home_lat %>
+ <% if @this_user.home_lon and @this_user.home_lat and contact.home_lon and contact.home_lat %>
<% distance = @this_user.distance(contact) %>
<% if distance < 1 %>
(<%= t 'user.view.m away', :count => (distance * 1000).round %>)
|