]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
Adding titles to trace lists
[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 %><br />
17 <%= link_to 'View traces', :controller => 'trace', :action=>'view', :display_name => @this_user.display_name %>
18
19 <% end %>
20
21 <h3>Nearby users</h3>
22 <% if @this_user.home_lat and @this_user.home_lon %>
23   <% if @this_user.nearby.empty? %>
24     There are no users who admit to mapping nearby.
25   <% else %>
26     <table id="nearbyusers">
27     <% @this_user.nearby.each do |nearby| %>
28     <tr>
29     <td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
30     <td><%= @this_user.distance(nearby).round %>km away</td>
31     <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
32     </tr>
33     <%end%>
34     </table>
35
36   <%end%>
37 <% else %>
38   No home location has been set.
39   <% if @user and @this_user.id == @user.id %>
40   You can set your home location on your <%= link_to 'settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> page.
41   <% end %>
42 <% end %>