]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
Removing list of nearby users from account page (now duplicated publicly on user...
[rails.git] / app / views / user / view.rhtml
1 <h2><%= @this_user.display_name %></h2>
2 <div id="description"><%= simple_format(@this_user.description) %></div>
3
4 <% if @user and @this_user.id == @user.id %>
5 <h3>Your diary</h3>
6 <%= link_to 'View your diary', :controller => 'user', :action=>'diary', :display_name => @user.display_name %><br/>
7 <%= link_to 'New diary post', :controller => 'diary_entry', :action=>'new', :display_name => @user.display_name %>
8
9 <h3>Your traces</h3>
10 <%= link_to 'View your traces', :controller => 'trace', :action=>'mine' %>
11
12 <h3>Your account</h3>
13 <%= link_to 'Edit your settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %>
14
15
16 <% else %>
17 <%= link_to 'Send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %><br /> 
18 <%= link_to 'Add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %><br />
19 <%= link_to 'View diary', :controller => 'user', :action=>'diary', :display_name => @this_user.display_name %><br />
20 <%= link_to 'View traces', :controller => 'trace', :action=>'view', :display_name => @this_user.display_name %>
21
22 <% end %>
23
24 <h3>Nearby users</h3>
25 <% if @this_user.home_lat and @this_user.home_lon %>
26   <% if @this_user.nearby.empty? %>
27     There are no users who admit to mapping nearby.
28   <% else %>
29     <table id="nearbyusers">
30     <% @this_user.nearby.each do |nearby| %>
31     <tr>
32     <td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
33     <td><%= @this_user.distance(nearby).round %>km away</td>
34     <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
35     </tr>
36     <%end%>
37     </table>
38
39   <%end%>
40 <% else %>
41   No home location has been set.
42   <% if @user and @this_user.id == @user.id %>
43   You can set your home location on your <%= link_to 'settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> page.
44   <% end %>
45 <% end %>