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