]> git.openstreetmap.org Git - rails.git/blob - app/views/user/_contact.html.erb
Use a param to trigger export rather than a separate action
[rails.git] / app / views / user / _contact.html.erb
1 <tr>
2   <td rowspan="3">
3     <%= user_thumbnail contact %>
4   </td>
5   <td>
6     <%= link_to h(contact.display_name), :controller => 'user', :action => 'view',  :display_name => contact.display_name %>
7     <% if @this_user.home_lon and @this_user.home_lat and contact.home_lon and contact.home_lat %>
8       <% distance = @this_user.distance(contact) %>
9       <% if distance < 1 %>
10         (<%= t 'user.view.m away', :count => (distance * 1000).round %>)
11       <% else %>
12         (<%= t 'user.view.km away', :count => distance.round %>)
13       <% end %>
14     <% end %>
15   </td>
16 </tr>
17 <tr>
18   <td>
19     <% changeset = contact.changesets.first %>
20     <% if changeset %>
21       <%= t('user.view.latest edit', :ago => t('user.view.ago', :time_in_words_ago => time_ago_in_words(changeset.created_at))) %>
22       <% comment = changeset.tags['comment'].to_s != '' ? changeset.tags['comment'] : t('changeset.changeset.no_comment') %>
23       "<%= link_to(comment,
24                           {:controller => 'browse', :action => 'changeset', :id => changeset.id},
25                           {:title => t('changeset.changeset.view_changeset_details')})
26       %>"
27     <% else %>
28      <%= t'changeset.changeset.no_edits' %>
29     <% end %>
30   </td>
31 </tr>
32 <tr>
33   <td>
34     <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => contact.display_name %>
35     |
36     <% if @user.is_friends_with?(contact) %>
37       <%= link_to t('user.view.remove as friend'), remove_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
38     <% else %>
39       <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
40     <% end %>
41   </td>
42 </tr>