]> 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 <% content_for :heading do %>
2   <div id='userinformation'>
3     <%= user_image @this_user %>
4     <div class='userinformation-inner'>
5       <h2><%= @this_user.display_name %><%= role_icons(@this_user) %></h2>
6       <% if @user and @this_user.id == @user.id %>
7         <!-- Displaying user's own profile page -->
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
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             <% else %>
79               <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => @this_user.display_name), :method => :post %>
80             <% end %>
81           </li>
82
83           <% if @this_user.blocks.exists? %>
84             <li>
85               <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
86               <span class='count-number'><%= number_with_delimiter(@this_user.blocks.active.size) %></span>
87             </li>
88           <% end %>
89
90           <% if @this_user.moderator? and @this_user.blocks_created.exists? %>
91             <li>
92               <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
93               <span class='count-number'><%= number_with_delimiter(@this_user.blocks_created.active.size) %></span>
94             </li>
95           <% end %>
96
97           <% if @user and @user.moderator? %>
98             <li>
99             <%= link_to t('user.view.create_block'), :controller => 'user_blocks', :action => 'new', :display_name => @this_user.display_name %>
100             </li>
101           <% end %>
102
103         </ul>
104
105       <% end %>
106
107       <% if @user and @user.administrator? %>
108
109         <ul class='secondary-actions clearfix'>
110           <% if ["active", "confirmed"].include? @this_user.status %>
111             <li>
112               <%= 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') } %>
113             </li>
114           <% elsif ["pending"].include? @this_user.status %>
115             <li>
116               <%= 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') } %>
117             </li>
118           <% end %>
119
120           <% if ["active", "suspended"].include? @this_user.status %>
121             <li>
122               <%= 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') } %>
123             </li>
124           <% end %>
125             <li>
126               <% if ["pending", "active", "confirmed", "suspended"].include? @this_user.status %>
127                 <%= 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') } %>
128             <% else %>
129               <%= 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') } %>
130             </li>
131           <% end %>
132           <li>
133             <%= link_to t('user.view.delete_user'), delete_user_path(:display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %>
134           </li>
135         </ul>
136
137         <% end %>
138
139       <p class='deemphasize'>
140         <small>
141           <%= t 'user.view.mapper since' %> <%= l @this_user.creation_time.to_date, :format => :long %>
142           |
143           <%= t 'user.view.ct status' %>
144           <% if not @this_user.terms_agreed.nil? -%>
145           <%= t 'user.view.ct accepted', :ago =>time_ago_in_words(@this_user.terms_agreed)  %>
146           <% elsif not @this_user.terms_seen? -%>
147           <%= t 'user.view.ct undecided' %>
148           <% else -%>
149           <%= t 'user.view.ct declined' %>
150           <% end -%>
151         </small>
152       </p>
153     </div>
154
155     <div class="user-description richtext"><%= @this_user.description.to_html %></div>
156
157   </div>
158
159   <% if @user and @user.administrator? -%>
160     <div class='admin-user-info deemphasize'>
161       <small><b><%= t 'user.view.email address' %></b> <%= @this_user.email %></small>
162       <% unless @this_user.creation_ip.nil? -%>
163         <small><b><%= t 'user.view.created from' %></b> <%= @this_user.creation_ip %></small>
164       <% end -%>
165       <small><b><%= t 'user.view.status' %></b> <%= @this_user.status.capitalize %></small>
166       <small><b><%= t 'user.view.spam score' %></b> <%= @this_user.spam_score %></small>
167     </div>
168   <% end -%>
169
170 <% end %>
171
172   <% if @user and @this_user.id == @user.id %>
173     <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
174       <div id="map" class="content_map">
175         <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>
176       </div>
177     <% else %>
178       <% content_for :head do %>
179         <%= javascript_include_tag "user" %>
180       <% end %>
181       <%
182         user_data = {
183           :lon => @user.home_lon,
184           :lat => @user.home_lat,
185           :icon => image_path("marker-red.png"),
186           :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"})
187         }
188       %>
189       <%= content_tag "div", "", :id => "map", :class => "content_map", :data => {:user => user_data} %>
190     <% end %>
191
192     <% friends = @this_user.friends.collect { |f| f.befriendee } %>
193     <% nearby = @this_user.nearby - friends %>
194
195   <div class="activity-block column-1">
196     <h3><%= t 'user.view.your friends' %></h3>
197
198     <% if friends.empty? %>
199       <%= t 'user.view.no friends' %>
200     <% else %>
201       <ul class='secondary-actions clearfix'>
202         <li><%= link_to t('user.view.friends_changesets'), friend_changesets_path %></li>
203         <li><%= link_to t('user.view.friends_diaries'), friend_diaries_path %></li>
204       </ul>
205       <div id="friends-container">
206         <%= render :partial => "contact", :collection => friends, :locals => {:type => "friend"} %>
207       </div>
208     <% end %>
209   </div>
210
211   <div class="activity-block column-1">
212     <h3><%= t 'user.view.nearby users' %></h3>
213
214     <% if nearby.empty? %>
215       <%= t 'user.view.no nearby users' %>
216     <% else %>
217       <ul class='secondary-actions clearfix'>
218         <li><%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %></li>
219         <li><%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %></li>
220       </ul>
221       <div id="nearbyusers">
222         <%= render :partial => "contact", :collection => nearby, :locals => {:type => "nearby mapper"} %>
223       </div>
224     <% end %>
225   </div>
226 <% end %>