]> git.openstreetmap.org Git - rails.git/blob - app/views/user/view.html.erb
be2e90b8a537f35d8ed0817e03752760df86a20f
[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 current_user and @this_user.id == current_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 => current_user.display_name %>
11             <span class='count-number'><%= number_with_delimiter(current_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(current_user.traces.size) %></span>
19           </li>
20           <li>
21             <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => current_user.display_name %>
22             <span class='count-number'><%= number_with_delimiter(current_user.diary_entries.size) %></span>
23           </li>
24           <li>
25             <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => current_user.display_name %>
26           </li>
27           <li>
28             <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => current_user.display_name %>
29           </li>
30
31           <% if current_user.blocks.exists? %>
32             <li>
33               <%= link_to t('user.view.blocks on me'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => current_user.display_name %>
34               <span class='count-number'><%= number_with_delimiter(current_user.blocks.active.size) %></span>
35             </li>
36           <% end %>
37
38           <% if current_user and current_user.moderator? and current_user.blocks_created.exists? %>
39             <li>
40               <%= link_to t('user.view.blocks by me'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => current_user.display_name %>
41               <span class='count-number'><%= number_with_delimiter(current_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 current_user and current_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 current_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
85           <% if @this_user.blocks.exists? %>
86             <li>
87               <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
88               <span class='count-number'><%= number_with_delimiter(@this_user.blocks.active.size) %></span>
89             </li>
90           <% end %>
91
92           <% if @this_user.moderator? and @this_user.blocks_created.exists? %>
93             <li>
94               <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
95               <span class='count-number'><%= number_with_delimiter(@this_user.blocks_created.active.size) %></span>
96             </li>
97           <% end %>
98
99           <% if current_user and current_user.moderator? %>
100             <li>
101             <%= link_to t('user.view.create_block'), :controller => 'user_blocks', :action => 'new', :display_name => @this_user.display_name %>
102             </li>
103           <% end %>
104
105           <% if current_user and @this_user.id != current_user.id %>
106             <li>
107               <%= link_to new_report_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name), :title => t('user.view.report') do %>
108                 &nbsp;&#9872;
109               <% end %>
110             </li>
111           <% end %>
112         </ul>
113
114       <% end %>
115
116       <% if current_user and current_user.administrator? %>
117
118         <ul class='secondary-actions clearfix'>
119           <% if ["active", "confirmed"].include? @this_user.status %>
120             <li>
121               <%= 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') } %>
122             </li>
123           <% elsif ["pending"].include? @this_user.status %>
124             <li>
125               <%= 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') } %>
126             </li>
127           <% end %>
128
129           <% if ["active", "suspended"].include? @this_user.status %>
130             <li>
131               <%= 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') } %>
132             </li>
133           <% end %>
134             <li>
135               <% if ["pending", "active", "confirmed", "suspended"].include? @this_user.status %>
136                 <%= 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') } %>
137             <% else %>
138               <%= 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') } %>
139             </li>
140           <% end %>
141           <li>
142             <%= link_to t('user.view.delete_user'), delete_user_path(:display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %>
143           </li>
144         </ul>
145
146         <% end %>
147
148       <p class='deemphasize'>
149         <small>
150           <%= t 'user.view.mapper since' %> <%= l @this_user.creation_time.to_date, :format => :long %>
151           <% unless @this_user.terms_agreed %>
152             |
153             <%= t 'user.view.ct status' %>
154             <% if @this_user.terms_seen? -%>
155               <%= t 'user.view.ct declined' %>
156             <% else -%>
157               <%= t 'user.view.ct undecided' %>
158             <% end -%>
159           <% end -%>
160         </small>
161       </p>
162     </div>
163
164     <div class="user-description richtext"><%= @this_user.description.to_html %></div>
165
166   </div>
167
168   <% if current_user and current_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 current_user and @this_user.id == current_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 => current_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 => current_user.home_lon,
193           :lat => current_user.home_lat,
194           :icon => image_path("marker-red.png"),
195           :description => render(:partial => "popup", :object => current_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 %>