]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
2090c2d5a23192d61807c41e77a864e84d7b08e2
[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 account</h3>
10 <%= link_to 'Edit your settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %>
11
12
13 <% else %>
14 <%= link_to 'Send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %><br /> 
15 <%= link_to 'Add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %><br />
16 <%= link_to 'View diary', :controller => 'user', :action=>'diary', :display_name => @this_user.display_name %>
17 <% end %>
18
19 <h3>Nearby users</h3>
20 <% if @this_user.home_lat and @this_user.home_lon %>
21   <% if @this_user.nearby.empty? %>
22     There are no users who admit to mapping nearby.
23   <% else %>
24     <table id="nearbyusers">
25     <% @this_user.nearby.each do |nearby| %>
26     <tr>
27     <td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
28     <td><%= @this_user.distance(nearby).round %>km away</td>
29     <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
30     </tr>
31     <%end%>
32     </table>
33
34   <%end%>
35 <% else %>
36   No home location has been set.
37 <% end %>