X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/44fdad8478988c9c84adb474729b1d7d3a5ca97b..8688edf992a909ca914834a00be58bbcd175f2e1:/app/views/user/_contact.html.erb?ds=inline diff --git a/app/views/user/_contact.html.erb b/app/views/user/_contact.html.erb index aa277f83e..82ca579d9 100644 --- a/app/views/user/_contact.html.erb +++ b/app/views/user/_contact.html.erb @@ -1,14 +1,18 @@ - - <% if contact.image %> - <%= image_tag url_for_file_column(contact, "image"), :class => "user_thumbnail" %> - <% else %> - <%= image_tag "anon_small.png", :class => "user_thumbnail" %> - <% end %> - + <% + user_data = { + :lon => contact.home_lon, + :lat => contact.home_lat, + :icon => type == "friend" ? "marker-blue.png" : "marker-green.png", + :description => render(:partial => "popup", :object => contact, :locals => {:type => type}) + } + %> + <%= content_tag "td", :rowspan => 3, :data => {:user => user_data} do %> + <%= user_thumbnail contact %> + <% end %> <%= 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 %>) @@ -18,14 +22,29 @@ <% 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))) %> + <% comment = changeset.tags['comment'].to_s != '' ? changeset.tags['comment'] : t('changeset.changeset.no_comment') %> + "<%= link_to(comment, + {:controller => 'browse', :action => 'changeset', :id => changeset.id}, + {:title => t('changeset.changeset.view_changeset_details')}) + %>" + <% else %> + <%= t'changeset.changeset.no_edits' %> + <% end %> + + <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => contact.display_name %> | <% if @user.is_friends_with?(contact) %> - <%= link_to t('user.view.remove as friend'), :controller => 'user', :action => 'remove_friend', :display_name => contact.display_name, :referer => request.request_uri %> + <%= link_to t('user.view.remove as friend'), remove_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %> <% else %> - <%= link_to t('user.view.add as friend'), :controller => 'user', :action => 'make_friend', :display_name => contact.display_name, :referer => request.request_uri %> + <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %> <% end %>