]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
User null to indicate the the user's home location is not set.
[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 => 'diary_entry', :action => 'list', :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 => 'diary_entry', :action => 'user', :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.nil? or @this_user.home_lon.nil? %>
26   No home location has been set.
27   <% if @user and @this_user.id == @user.id %>
28   You can set your home location on your <%= link_to 'settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> page.
29   <% end %>
30 <% else %>
31   <% if @this_user.nearby.empty? %>
32     There are no users who admit to mapping nearby.
33   <% else %>
34     <table id="nearbyusers">
35     <% @this_user.nearby.each do |nearby| %>
36     <tr>
37     <td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
38     <td><%= @this_user.distance(nearby).round %>km away</td>
39     <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
40     </tr>
41     <%end%>
42     </table>
43   <%end%>
44 <% end %>