]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.rhtml
3f74d036993bf4a97b29e57940e06100909fd8bb
[rails.git] / app / views / user / view.rhtml
1 <% @this_user = User.find_by_display_name(@this_user.display_name) %>
2 <h2><%= @this_user.display_name %></h2>
3 <div id="userinformation">
4 <% if @user and @this_user.id == @user.id %>
5 <%= link_to 'my diary', :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %>
6 | <%= link_to 'new diary post', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
7 | <%= link_to 'my traces', :controller => 'trace', :action=>'mine' %>
8 | <%= link_to 'my settings', :controller => 'user', :action => 'account', :display_name => @user.display_name %>
9 <% else %>
10 <%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => @this_user.id %>
11 | <%= link_to 'diary', :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %>
12 | <%= link_to 'traces', :controller => 'trace', :action => 'view', :display_name => @this_user.display_name %>
13 | <% if @user and @user.is_friends_with?(@this_user) %>
14   <%= link_to 'remove as friend', :controller => 'user', :action => 'remove_friend', :display_name => @this_user.display_name %>
15 <% else %>
16   <%= link_to 'add as friend', :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %>
17 <% end %>
18 <% end %>
19 </div>
20
21 <div id="description"><%= simple_format(@this_user.description) %></div>
22
23 <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
24 <h3>User location</h3>
25
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
32   <% if @user and @this_user.id == @user.id %>
33     <h3>Your friends</h3>
34     <% if @this_user.friends.empty? %>
35       You have not added any friends yet.
36     <% else %>
37       <table id="friends">
38       <% @this_user.friends.each do |friend| %>
39       <% @friend = User.find_by_id(friend.friend_user_id) %>
40       <tr>
41       <td class="username"><%= link_to @friend.display_name, :controller => 'user', :action => 'view',  :display_name => @friend.display_name %></td>
42       <td><% if @friend.home_lon and @friend.home_lat %><%= @this_user.distance(@friend).round %>km away<% end %></td>
43       <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => @friend.id %>)</td>
44       </tr>
45       <%end%>
46       </table>
47     <%end%>
48     <br/>
49   <%end%>
50
51
52   <% if @user and @this_user.id == @user.id %>
53     <h3>Nearby users:</h3>
54     <% if @this_user.nearby.empty? %>
55       There are no users who admit to mapping nearby yet.
56     <% else %>
57
58     <div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 400px;"></div>
59     <%= render :partial => 'friend_map' %>
60       <table id="nearbyusers">
61       <% @this_user.nearby.each do |nearby| %>
62       <tr>
63       <td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view',  :display_name => nearby.display_name %></td>
64       <td><%= @this_user.distance(nearby).round %>km away</td>
65       <td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
66       </tr>
67       <% end %>
68       </table>
69     <% end %>
70   <% end %>
71 <% end %>