]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
Make tag links work again.
[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 <h3>Your traces</h3>
9 <%= link_to 'View your traces', :controller => 'trace', :action=>'mine' %>
10 <h3>Your account</h3>
11 <%= link_to 'Edit your settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %>
12 <% else %>
13 <%= link_to 'Send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %><br /> 
14 <%= link_to 'Add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %><br />
15 <%= link_to 'View diary', :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %><br />
16 <%= link_to 'View traces', :controller => 'trace', :action => 'view', :display_name => @this_user.display_name %>
17 <% end %>
18
19 <h3>Nearby users</h3>
20 <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
21   No home location has been set.
22   <% if @user and @this_user.id == @user.id %>
23   You can set your home location on your <%= link_to 'settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %> page.
24   <% end %>
25 <% else %>
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   <%end%>
39 <% end %>