]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.html.erb
c85ca5fd9a5c9b77585c30fe831a52ffdf3c300b
[rails.git] / app / views / user / view.html.erb
1 <% content_for :heading do %>
2   <div id='userinformation'>
3     <%= user_image @this_user %>
4     <div class='userinformation-inner'>
5       <h1><%= @this_user.display_name %><%= role_icons(@this_user) %></h1>
6       <% if @user and @this_user.id == @user.id %>
7         <!-- Displaying user's own profile page to themself -->
8         <ul class='secondary-actions clearfix'>
9           <li>
10             <%= link_to t('user.view.my edits'), :controller => 'changeset', :action => 'list', :display_name => @user.display_name %>
11             <span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
12           </li>
13           <li>
14             <%= link_to t('user.view.my notes'), :controller => 'notes', :action=> 'mine' %>
15           </li>
16           <li>
17             <%= link_to t('user.view.my traces'), :controller => 'trace', :action=>'mine' %>
18             <span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
19           </li>
20           <li>
21             <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %>
22             <span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
23           </li>
24           <li>
25             <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => @user.display_name %>
26           </li>
27           <li>
28             <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
29           </li>
30
31           <% if @user.blocks.exists? %>
32             <li>
33               <%= link_to t('user.view.blocks on me'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @user.display_name %>
34               <span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
35             </li>
36           <% end %>
37
38           <% if @user and @user.moderator? and @user.blocks_created.exists? %>
39             <li>
40               <%= link_to t('user.view.blocks by me'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @user.display_name %>
41               <span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
42             </li>
43           <% end %>
44
45         </ul>
46
47         <% else %>
48         <!-- Displaying user profile page to the public -->
49         <ul class='secondary-actions clearfix'>
50
51           <li>
52             <%= link_to t('user.view.edits'), :controller => 'changeset', :action => 'list', :display_name => @this_user.display_name %>
53             <span class='count-number'><%= number_with_delimiter(@this_user.changesets.size) %></span>
54           </li>
55           <li>
56             <%= link_to t('user.view.notes'), :controller => 'notes', :action=> 'mine' %>
57           </li>
58           <li>
59             <%= link_to t('user.view.traces'), :controller => 'trace', :action => 'list', :display_name => @this_user.display_name %>
60             <span class='count-number'><%= number_with_delimiter(@this_user.traces.size) %></span>
61           </li>
62
63           <!-- Displaying another user's profile page -->
64
65           <li>
66             <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => @this_user.display_name %>
67           </li>
68           <li>
69             <%= link_to t('user.view.diary'), :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %>
70             <span class='count-number'><%= number_with_delimiter(@this_user.diary_entries.size) %></span>
71           </li>
72           <li>
73             <%= link_to t('user.view.comments'), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %>
74           </li>
75           <li>
76             <% if @user and @user.is_friends_with?(@this_user) %>
77               <%= link_to t('user.view.remove as friend'), remove_friend_path(:display_name => @this_user.display_name), :method => :post %>
78             <% elsif @user %>
79               <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => @this_user.display_name), :method => :post %>
80             <% else %>
81               <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => @this_user.display_name) %>
82             <% end %>
83           </li>
84           <% if @this_user.blocks.exists? %>
85             <li>
86               <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
87               <span class='count-number'><%= number_with_delimiter(@this_user.blocks.active.size) %></span>
88             </li>
89           <% end %>
90
91           <% if @this_user.moderator? and @this_user.blocks_created.exists? %>
92             <li>
93               <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
94               <span class='count-number'><%= number_with_delimiter(@this_user.blocks_created.active.size) %></span>
95             </li>
96           <% end %>
97
98           <% if @user and @user.moderator? %>
99             <li>
100             <%= link_to t('user.view.create_block'), :controller => 'user_blocks', :action => 'new', :display_name => @this_user.display_name %>
101             </li>
102           <% end %>
103
104         </ul>
105
106       <% end %>
107
108       <% if @user and @user.administrator? %>
109
110         <ul class='secondary-actions clearfix'>
111           <% if ["active", "confirmed"].include? @this_user.status %>
112             <li>
113               <%= 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') } %>
114             </li>
115           <% elsif ["pending"].include? @this_user.status %>
116             <li>
117               <%= 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') } %>
118             </li>
119           <% end %>
120
121           <% if ["active", "suspended"].include? @this_user.status %>
122             <li>
123               <%= 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') } %>
124             </li>
125           <% end %>
126             <li>
127               <% if ["pending", "active", "confirmed", "suspended"].include? @this_user.status %>
128                 <%= 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') } %>
129             <% else %>
130               <%= 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') } %>
131             </li>
132           <% end %>
133           <li>
134             <%= link_to t('user.view.delete_user'), delete_user_path(:display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %>
135           </li>
136         </ul>
137
138         <% end %>
139
140       <p class='deemphasize'>
141         <small>
142           <%= t 'user.view.mapper since' %> <%= l @this_user.creation_time.to_date, :format => :long %>
143           |
144           <%= t 'user.view.ct status' %>
145           <% if not @this_user.terms_agreed.nil? -%>
146           <%= t 'user.view.ct accepted', :ago =>time_ago_in_words(@this_user.terms_agreed)  %>
147           <% elsif not @this_user.terms_seen? -%>
148           <%= t 'user.view.ct undecided' %>
149           <% else -%>
150           <%= t 'user.view.ct declined' %>
151           <% end -%>
152         </small>
153       </p>
154     </div>
155
156     <% if @user and @this_user.id != @user.id %>
157       <div class="report-button">
158          <%= link_to new_issue_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name, reported_user_id: @this_user.id), :title => t('user.view.report') do%>
159             <%= image_tag('notice.png', size: '10x10') %>
160          <% end %>
161       </div>
162     <% end %>
163
164     <div class="user-description richtext"><%= @this_user.description.to_html %></div>
165
166   </div>
167
168   <% if @user and @user.administrator? -%>
169     <div class='admin-user-info deemphasize'>
170       <small><b><%= t 'user.view.email address' %></b> <%= @this_user.email %></small>
171       <% unless @this_user.creation_ip.nil? -%>
172         <small><b><%= t 'user.view.created from' %></b> <%= @this_user.creation_ip %></small>
173       <% end -%>
174       <small><b><%= t 'user.view.status' %></b> <%= @this_user.status.capitalize %></small>
175       <small><b><%= t 'user.view.spam score' %></b> <%= @this_user.spam_score %></small>
176     </div>
177   <% end -%>
178
179 <% end %>
180
181   <% if @user and @this_user.id == @user.id %>
182     <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
183       <div id="map" class="content_map">
184         <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>
185       </div>
186     <% else %>
187       <% content_for :head do %>
188         <%= javascript_include_tag "user" %>
189       <% end %>
190       <%
191         user_data = {
192           :lon => @user.home_lon,
193           :lat => @user.home_lat,
194           :icon => image_path("marker-red.png"),
195           :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"})
196         }
197       %>
198       <%= content_tag "div", "", :id => "map", :class => "content_map", :data => {:user => user_data} %>
199     <% end %>
200
201     <% friends = @this_user.friends.collect { |f| f.befriendee } %>
202     <% nearby = @this_user.nearby - friends %>
203
204   <div class="activity-block column-1">
205     <h3><%= t 'user.view.your friends' %></h3>
206
207     <% if friends.empty? %>
208       <%= t 'user.view.no friends' %>
209     <% else %>
210       <ul class='secondary-actions clearfix'>
211         <li><%= link_to t('user.view.friends_changesets'), friend_changesets_path %></li>
212         <li><%= link_to t('user.view.friends_diaries'), friend_diaries_path %></li>
213       </ul>
214       <div id="friends-container">
215         <%= render :partial => "contact", :collection => friends, :locals => {:type => "friend"} %>
216       </div>
217     <% end %>
218   </div>
219
220   <div class="activity-block column-1">
221     <h3><%= t 'user.view.nearby users' %></h3>
222
223     <% if nearby.empty? %>
224       <%= t 'user.view.no nearby users' %>
225     <% else %>
226       <ul class='secondary-actions clearfix'>
227         <li><%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %></li>
228         <li><%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %></li>
229       </ul>
230       <div id="nearbyusers">
231         <%= render :partial => "contact", :collection => nearby, :locals => {:type => "nearby mapper"} %>
232       </div>
233     <% end %>
234   </div>
235 <% end %>