1 <%= user_image @this_user %>
3 <h2><%= @this_user.display_name %><%= role_icons(@this_user) %></h2>
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>
11 <%= link_to t('user.view.my traces'), :controller => 'trace', :action=>'mine' %>
12 <span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
14 <%= link_to t('user.view.my diary'), :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name %>
16 <%= link_to t('user.view.my comments' ), :controller => 'diary_entry', :action => 'comments', :display_name => @user.display_name %>
18 <%= link_to t('user.view.my settings'), :controller => 'user', :action => 'account', :display_name => @user.display_name %>
19 <% if @user.blocks.exists? %>
21 <%= link_to t('user.view.blocks on me'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @user.display_name %>
22 <span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
24 <% if @user and @user.moderator? and @user.blocks_created.exists? %>
26 <%= link_to t('user.view.blocks by me'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @user.display_name %>
27 <span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
30 <%= link_to t('user.view.edits'), :controller => 'changeset', :action => 'list', :display_name => @this_user.display_name %>
31 <span class='count-number'><%= number_with_delimiter(@this_user.changesets.size) %></span>
33 <%= link_to t('user.view.traces'), :controller => 'trace', :action => 'list', :display_name => @this_user.display_name %>
34 <span class='count-number'><%= number_with_delimiter(@this_user.traces.size) %></span>
36 <!-- Displaying another user's profile page -->
37 <%= link_to t('user.view.send message'), :controller => 'message', :action => 'new', :display_name => @this_user.display_name %>
39 <%= link_to t('user.view.diary'), :controller => 'diary_entry', :action => 'list', :display_name => @this_user.display_name %>
41 <%= link_to t('user.view.comments'), :controller => 'diary_entry', :action => 'comments', :display_name => @this_user.display_name %>
43 <% if @user and @user.is_friends_with?(@this_user) %>
44 <%= link_to t('user.view.remove as friend'), remove_friend_path(:display_name => @this_user.display_name), :method => :post %>
46 <%= link_to t('user.view.add as friend'), make_friend_path(:display_name => @this_user.display_name), :method => :post %>
48 <% if @this_user.blocks.exists? %>
50 <%= link_to t('user.view.block_history'), :controller => 'user_blocks', :action => 'blocks_on', :display_name => @this_user.display_name %>
51 <span class='count-number'><%= number_with_delimiter(@this_user.blocks.active.size) %></span>
53 <% if @this_user.moderator? and @this_user.blocks_created.exists? %>
55 <%= link_to t('user.view.moderator_history'), :controller => 'user_blocks', :action => 'blocks_by', :display_name => @this_user.display_name %>
56 <span class='count-number'><%= number_with_delimiter(@this_user.blocks_created.active.size) %></span>
58 <% if @user and @user.moderator? %>
59 | <%= link_to t('user.view.create_block'), :controller => 'user_blocks', :action => 'new', :display_name => @this_user.display_name %>
62 <% if @user and @user.administrator? %>
64 <% if ["active", "confirmed"].include? @this_user.status %>
65 <%= 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') } %> |
66 <% elsif ["pending"].include? @this_user.status %>
67 <%= 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') } %> |
69 <% if ["active", "suspended"].include? @this_user.status %>
70 <%= 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') } %> |
72 <% if ["pending", "active", "confirmed", "suspended"].include? @this_user.status %>
73 <%= 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') } %> |
75 <%= 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') } %> |
77 <%= link_to t('user.view.delete_user'), delete_user_path(:display_name => @this_user.display_name), :data => { :confirm => t('user.view.confirm') } %>
81 <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>
83 <p><b><%= t 'user.view.ct status' %></b>
84 <% if not @this_user.terms_agreed.nil? -%>
85 <%= t 'user.view.ct accepted', :ago =>time_ago_in_words(@this_user.terms_agreed) %>
86 <% elsif not @this_user.terms_seen? -%>
87 <%= t 'user.view.ct undecided' %>
89 <%= t 'user.view.ct declined' %>
93 <% if @user and @user.administrator? -%>
94 <p><b><%= t 'user.view.email address' %></b> <%= @this_user.email %></p>
95 <% unless @this_user.creation_ip.nil? -%>
96 <p><b><%= t 'user.view.created from' %></b> <%= @this_user.creation_ip %></p>
98 <p><b><%= t 'user.view.status' %></b> <%= @this_user.status.capitalize %></p>
99 <p><b><%= t 'user.view.spam score' %></b> <%= @this_user.spam_score %></p>
102 <h3><%= t 'user.view.description' %></h3>
104 <div id="description"><%= @this_user.description.to_html %></div>
106 <% if @user and @this_user.id == @user.id %>
107 <div id="map" class="user_map">
108 <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %>
109 <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>
111 <%= render :partial => 'map', :locals => { :setting_location => false, :show_other_users => true } %>
115 <% friends = @this_user.friends.collect { |f| f.befriendee } %>
116 <% nearby = @this_user.nearby - friends %>
118 <h3 style="margin-top: 0"><%= t 'user.view.your friends' %></h3>
120 <% if friends.empty? %>
121 <%= t 'user.view.no friends' %>
123 <%= link_to t('user.view.friends_changesets'), friend_changesets_path %><br/>
124 <%= link_to t('user.view.friends_diaries'), friend_diaries_path %><br/><br/>
126 <%= render :partial => "contact", :collection => friends %>
130 <h3><%= t 'user.view.nearby users' %></h3>
132 <% if nearby.empty? %>
133 <%= t 'user.view.no nearby users' %>
135 <%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %><br/>
136 <%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %><br/><br/>
137 <table id="nearbyusers">
138 <%= render :partial => "contact", :collection => nearby %>