X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/acfbc091982fbf74baeef7d16ff7d84f63c84951..0876ea0beece91be4cbd603e13951cfe6bc8e773:/app/views/users/_contact.html.erb diff --git a/app/views/users/_contact.html.erb b/app/views/users/_contact.html.erb index ab56ce3e8..c7e10c060 100644 --- a/app/views/users/_contact.html.erb +++ b/app/views/users/_contact.html.erb @@ -1,46 +1,43 @@ -<% - user_data = { +<% user_data = { :lon => contact.home_lon, :lat => contact.home_lat, :icon => image_path(type == "friend" ? "marker-blue.png" : "marker-green.png"), - :description => render(:partial => "popup", :object => contact, :locals => {:type => type}) - } -%> -<%= content_tag :div, :class => "contact-activity clearfix", :data => {:user => user_data} do %> + :description => render(:partial => "popup", :object => contact, :locals => { :type => type }) + } %> +<%= tag.div :class => "contact-activity clearfix", :data => { :user => user_data } do %> <%= user_thumbnail contact %>
- <%= link_to h(contact.display_name), user_path(contact) %> +
+ <%= link_to 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 'users.show.m away', :count => (distance * 1000).round %>) + (<%= t "users.show.m away", :count => (distance * 1000).round %>) <% else %> - (<%= t 'users.show.km away', :count => distance.round %>) + (<%= t "users.show.km away", :count => distance.round %>) <% end %> <% end %>
<% changeset = contact.changesets.first %>
<% if changeset %>
- <%= t('users.show.latest edit', :ago => t('users.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},
- {:title => t('changeset.changeset.view_changeset_details')})
- %>"
+ <%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :"datetime.distance_in_words_ago")) %>
+ <% comment = changeset.tags["comment"].to_s == "" ? t("browse.no_comment") : changeset.tags["comment"] %>
+ <%= link_to(comment,
+ { :controller => "browse", :action => "changeset", :id => changeset.id },
+ { :title => t("changesets.changeset.view_changeset_details") }) %>
<% else %>
- <%= t'changeset.changeset.no_edits' %>
+ <%= t "changesets.changeset.no_edits" %>
<% end %>