]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.html.erb
Merge branch 'master' into notes
[rails.git] / app / views / user / view.html.erb
1 <%= user_image @this_user %>
2
3 <h2><%= @this_user.display_name %><%= role_icons(@this_user) %></h2>
4
5 <div id="userinformation">
6   <% if @user and @this_user.id == @user.id %>
7     <!-- Displaying user's own profile page -->
8     <%= link_to t('user.view.my edits'), :controller => 'changeset', :action => 'list', :display_name => @user.display_name %>
9     <span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
10     |
11     <%= link_to t('user.view.my traces'), :controller => 'trace', :action=>'mine' %>
12     <span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
13     |
14     <%= link_to t('user.view.my notes'), :controller => 'notes', :action=> 'mine' %>
15     |
16     <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %>
17     <span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
18     |
19     <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => @user.display_name %>
20     |
21     <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
22     <% if @user.blocks.exists? %>
23       |
24       <%= link_to t('user.view.blocks on me'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @user.display_name %>
25       <span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
26     <% end %>
27     <% if @user and @user.moderator? and @user.blocks_created.exists? %>
28       |
29       <%= link_to t('user.view.blocks by me'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @user.display_name %>
30       <span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
31     <% end %>
32   <% else %>
33     <%= link_to t('user.view.edits'), :controller => 'changeset', :action => 'list', :display_name => @this_user.display_name %>
34     <span class='count-number'><%= number_with_delimiter(@this_user.changesets.size) %></span>
35     |
36     <%= link_to t('user.view.traces'), :controller => 'trace', :action => 'list', :display_name => @this_user.display_name %>
37     <span class='count-number'><%= number_with_delimiter(@this_user.traces.size) %></span>
38     |
39     <%= link_to t('user.view.notes'), :controller => 'notes', :action=> 'mine' %>
40     |
41     <!-- Displaying another user's profile page -->
42     <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => @this_user.display_name %>
43     |
44     <%= link_to t('user.view.diary'), :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %>
45     <span class='count-number'><%= number_with_delimiter(@this_user.diary_entries.size) %></span>
46     |
47     <%= link_to t('user.view.comments'), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %>
48     |
49     <% if @user and @user.is_friends_with?(@this_user) %>
50       <%= link_to t('user.view.remove as friend'), remove_friend_path(:display_name => @this_user.display_name), :method => :post %>
51     <% else %>
52       <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => @this_user.display_name), :method => :post %>
53     <% end %>
54     <% if @this_user.blocks.exists? %>
55       |
56       <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
57       <span class='count-number'><%= number_with_delimiter(@this_user.blocks.active.size) %></span>
58     <% end %>
59     <% if @this_user.moderator? and @this_user.blocks_created.exists? %>
60       |
61       <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
62       <span class='count-number'><%= number_with_delimiter(@this_user.blocks_created.active.size) %></span>
63     <% end %>
64     <% if @user and @user.moderator? %>
65       | <%= link_to t('user.view.create_block'), :controller => 'user_blocks', :action => 'new', :display_name => @this_user.display_name %>
66     <% end %>
67   <% end %>
68   <% if @user and @user.administrator? %>
69     <br/>
70     <% if ["active", "confirmed"].include? @this_user.status %>
71       <%= link_to t('user.view.deactivate_user'), set_status_user_path(:status => 'pending', :display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %> |
72     <% elsif ["pending"].include? @this_user.status %>
73       <%= link_to t('user.view.activate_user'), set_status_user_path(:status => 'active', :display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %> |
74     <% end %>
75     <% if ["active", "suspended"].include? @this_user.status %>
76       <%= link_to t('user.view.confirm_user'), set_status_user_path(:status => 'confirmed', :display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %> |
77     <% end %>
78     <% if ["pending", "active", "confirmed", "suspended"].include? @this_user.status %>
79       <%= link_to t('user.view.hide_user'), set_status_user_path(:status => 'deleted', :display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %> |
80     <% else %>
81       <%= link_to t('user.view.unhide_user'), set_status_user_path(:status => 'active', :display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %> |
82     <% end %>
83     <%= link_to t('user.view.delete_user'), delete_user_path(:display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %>
84   <% end %>
85 </div>
86
87 <div id="description"><%= @this_user.description.to_html %></div>
88
89 <p class='deemphasize'><small>
90 <%= t 'user.view.mapper since' %> <%= l @this_user.creation_time.to_date, :format => :long %>
91 /
92 <%= t 'user.view.ct status' %>
93 <% if not @this_user.terms_agreed.nil? -%>
94 <%= t 'user.view.ct accepted', :ago =>time_ago_in_words(@this_user.terms_agreed)  %>
95 <% elsif not @this_user.terms_seen? -%>
96 <%= t 'user.view.ct undecided' %>
97 <% else -%>
98 <%= t 'user.view.ct declined' %>
99 <% end -%>
100 </small>
101 </p>
102
103 <% if @user and @user.administrator? -%>
104   <p><b><%= t 'user.view.email address' %></b> <%= @this_user.email %></p>
105   <% unless @this_user.creation_ip.nil? -%>
106   <p><b><%= t 'user.view.created from' %></b> <%= @this_user.creation_ip %></p>
107   <% end -%>
108   <p><b><%= t 'user.view.status' %></b> <%= @this_user.status.capitalize %></p>
109   <p><b><%= t 'user.view.spam score' %></b> <%= @this_user.spam_score %></p>
110 <% end -%>
111
112 <% if @user and @this_user.id == @user.id %>
113   <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
114     <div id="map" class="user_map">
115       <p id="no_home_location"><%= raw(t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => @user.display_name)) %></p>
116     </div>
117   <% else %>
118     <% content_for :head do %>
119       <%= javascript_include_tag "user" %>
120     <% end %>
121     <%
122       user_data = {
123         :lon => @user.home_lon,
124         :lat => @user.home_lat,
125         :icon => image_path("marker-red.png"),
126         :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"})
127       }
128     %>
129     <%= content_tag "div", "", :id => "map", :class => "user_map", :data => {:user => user_data} %>
130   <% end %>
131
132   <% friends = @this_user.friends.collect { |f| f.befriendee } %>
133   <% nearby = @this_user.nearby - friends %>
134
135   <h3 style="margin-top: 0"><%= t 'user.view.your friends' %></h3>
136
137   <% if friends.empty? %>
138     <%= t 'user.view.no friends' %>
139   <% else %>
140     <%= link_to t('user.view.friends_changesets'), friend_changesets_path %><br/>
141     <%= link_to t('user.view.friends_diaries'), friend_diaries_path %><br/><br/>
142     <table id="friends">
143       <%= render :partial => "contact", :collection => friends, :locals => {:type => "friend"} %>
144     </table>
145   <% end %>
146
147   <h3><%= t 'user.view.nearby users' %></h3>
148
149   <% if nearby.empty? %>
150     <%= t 'user.view.no nearby users' %>
151   <% else %>
152     <%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %><br/>
153     <%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %><br/><br/>
154     <table id="nearbyusers">
155       <%= render :partial => "contact", :collection => nearby, :locals => {:type => "nearby mapper"} %>
156     </table>
157   <% end %>
158 <% end %>