]> 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><%= h(@this_user.display_name) %>
4
5 <% UserRole::ALL_ROLES.each do |role| %>
6   <% if @user and @user.administrator? %>
7     <% if @this_user.has_role? role %>
8       <%= link_to(image_tag("roles/#{role}.png", :size => "20x20", :border => 0, :alt => t("user.view.role.revoke.#{role}"), :title => t("user.view.role.revoke.#{role}")), :controller => 'user_roles', :action => 'revoke', :display_name => @this_user.display_name, :role => role) %>
9     <% else %>
10       <%= link_to(image_tag("roles/blank_#{role}.png", :size => "20x20", :border => 0, :alt => t("user.view.role.grant.#{role}"), :title => t("user.view.role.grant.#{role}")), :controller => 'user_roles', :action => 'grant', :display_name => @this_user.display_name, :role => role) %>
11     <% end %>
12   <% elsif @this_user.has_role? role %>
13     <%= image_tag("roles/#{role}.png", :size => "20x20", :border => 0, :alt => t("user.view.role.#{role}"), :title => t("user.view.role.#{role}")) %>
14   <% end %>
15 <% end %></h2>
16
17 <div id="userinformation">
18   <% if @user and @this_user.id == @user.id %>
19     <!-- Displaying user's own profile page -->
20     <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %>
21     |
22     <%= link_to t('user.view.new diary entry'), :controller => 'diary_entry', :action => 'new' %>
23     |
24     <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %>
25     |
26     <%= link_to t('user.view.my edits'), :controller => 'changeset', :action => 'list', :display_name => @user.display_name %>
27     |
28     <%= link_to t('user.view.my traces'), :controller => 'trace', :action=> 'mine' %>
29     |
30     <%= link_to t('user.view.my notes'), :controller => 'note', :action=> 'mine' %>
31     |
32     <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
33     |
34     <%= link_to t('user.view.oauth settings'), :controller => 'oauth_clients', :action => 'index' %>
35     |
36     <%= link_to t('user.view.blocks on me'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @user.display_name %>
37     <% if @user and @user.moderator? %>
38       | <%= link_to t('user.view.blocks by me'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @user.display_name %>
39     <% end %>
40   <% else %>
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     |
46     <%= link_to t('user.view.comments'), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %>
47     |
48     <%= link_to t('user.view.edits'), :controller => 'changeset', :action => 'list', :display_name => @this_user.display_name %>
49     |
50     <%= link_to t('user.view.traces'), :controller => 'trace', :action => 'list', :display_name => @this_user.display_name %>
51     |
52     <%= link_to t('user.view.notes'), :controller => 'note', :action=> 'mine' %>
53     |
54     <% if @user and @user.is_friends_with?(@this_user) %>
55       <%= link_to t('user.view.remove as friend'), :controller => 'user', :action => 'remove_friend', :display_name => @this_user.display_name %>
56     <% else %>
57       <%= link_to t('user.view.add as friend'), :controller => 'user', :action => 'make_friend', :display_name => @this_user.display_name %>
58     <% end %>
59     |
60     <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
61     <% if @this_user.moderator? %>
62       | <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
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'), {:controller => 'user', :action => 'set_status', :status => 'pending', :display_name => @this_user.display_name}, {:confirm => t('user.view.confirm')} %> |
72     <% elsif ["pending"].include? @this_user.status %>
73       <%= link_to t('user.view.activate_user'), {:controller => 'user', :action => 'set_status', :status => 'active', :display_name => @this_user.display_name}, {:confirm => t('user.view.confirm')} %> |
74     <% end %>
75     <% if ["active", "suspended"].include? @this_user.status %>
76       <%= link_to t('user.view.confirm_user'), {:controller => 'user', :action => 'set_status', :status => 'confirmed', :display_name => @this_user.display_name}, {: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'), {:controller => 'user', :action => 'set_status', :status => 'deleted', :display_name => @this_user.display_name}, {:confirm => t('user.view.confirm')} %> |
80     <% else %>
81       <%= link_to t('user.view.unhide_user'), {:controller => 'user', :action => 'set_status', :status => 'active', :display_name => @this_user.display_name}, {:confirm => t('user.view.confirm')} %> |
82     <% end %>
83     <%= link_to t('user.view.delete_user'), {:controller => 'user', :action => 'delete', :display_name => @this_user.display_name}, {:confirm => t('user.view.confirm')} %>
84   <% end %>
85 </div>
86
87 <p><b><%= t 'user.view.mapper since' %></b> <%= l @this_user.creation_time, :format => :friendly %> <%= t 'user.view.ago', :time_in_words_ago => time_ago_in_words(@this_user.creation_time) %></p>
88
89 <p><b><%= t 'user.view.ct status' %></b>
90 <% if not @this_user.terms_agreed.nil? -%>
91 <%= t 'user.view.ct accepted', :ago =>time_ago_in_words(@this_user.terms_agreed)  %> 
92 <% elsif not @this_user.terms_seen? -%>
93 <%= t 'user.view.ct undecided' %>
94 <% else -%>
95 <%= t 'user.view.ct declined' %>
96 <% end -%>
97 </p>
98
99 <% if @user and @user.administrator? -%>
100   <p><b><%= t 'user.view.email address' %></b> <%= @this_user.email %></p>  
101   <% unless @this_user.creation_ip.nil? -%>
102   <p><b><%= t 'user.view.created from' %></b> <%= @this_user.creation_ip %></p>
103   <% end -%>
104   <p><b><%= t 'user.view.status' %></b> <%= @this_user.status.capitalize %></p>
105   <p><b><%= t 'user.view.spam score' %></b> <%= @this_user.spam_score %></p>
106 <% end -%>
107
108 <h3><%= t 'user.view.description' %></h3>
109
110 <div id="description"><%= htmlize(@this_user.description) %></div>
111
112 <% if @user and @this_user.id == @user.id %>
113   <div id="map" class="user_map">
114     <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
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     <% else %>
117       <%= render :partial => 'map', :locals => { :setting_location => false, :show_other_users => true } %>
118     <% end %>
119   </div>
120
121   <% friends = @this_user.friends.collect { |f| f.befriendee } %>
122   <% nearby = @this_user.nearby - friends %>
123
124   <h3 style="margin-top: 0"><%= t 'user.view.your friends' %></h3>
125
126   <% if friends.empty? %>
127     <%= t 'user.view.no friends' %>
128   <% else %>
129     <%= link_to t('user.view.friends_changesets'), friend_changesets_path %><br/>
130     <%= link_to t('user.view.friends_diaries'), friend_diaries_path %><br/><br/>
131     <table id="friends">
132       <%= render :partial => "contact", :collection => friends %>
133     </table>
134   <% end %>
135
136   <h3><%= t 'user.view.nearby users' %></h3>
137
138   <% if nearby.empty? %>
139     <%= t 'user.view.no nearby users' %>
140   <% else %>
141     <%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %><br/>
142     <%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %><br/><br/>
143     <table id="nearbyusers">
144       <%= render :partial => "contact", :collection => nearby %>
145     </table>
146   <% end %>
147 <% end %>