1 <% content_for :heading do %>
3 <div class="col-sm-auto">
4 <%= user_image @user %>
7 <h1><%= @user.display_name %> <%= role_icons(@user) %></h1>
8 <% if current_user and @user.id == current_user.id %>
9 <!-- Displaying user's own profile page -->
10 <nav class='secondary-actions'>
13 <%= link_to t(".my edits"), :controller => "changesets", :action => "index", :display_name => current_user.display_name %>
14 <span class='count-number'><%= number_with_delimiter(current_user.changesets.size) %></span>
17 <%= link_to t(".my notes"), user_notes_path(@user) %>
20 <%= link_to t(".my traces"), :controller => "traces", :action => "mine" %>
21 <span class='count-number'><%= number_with_delimiter(current_user.traces.size) %></span>
24 <%= link_to t(".my diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %>
25 <span class='count-number'><%= number_with_delimiter(current_user.diary_entries.size) %></span>
28 <%= link_to t(".my comments"), diary_comments_path(current_user) %>
31 <%= link_to t(".my settings"), edit_account_path %>
34 <% if current_user.blocks.exists? %>
36 <%= link_to t(".blocks on me"), user_blocks_on_path(current_user) %>
37 <span class='count-number'><%= number_with_delimiter(current_user.blocks.active.size) %></span>
41 <% if can?(:create, UserBlock) and current_user.blocks_created.exists? %>
43 <%= link_to t(".blocks by me"), user_blocks_by_path(current_user) %>
44 <span class='count-number'><%= number_with_delimiter(current_user.blocks_created.active.size) %></span>
52 <!-- Displaying user profile page to the public -->
53 <nav class='secondary-actions'>
57 <%= link_to t(".edits"), :controller => "changesets", :action => "index", :display_name => @user.display_name %>
58 <span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
61 <%= link_to t(".notes"), user_notes_path(@user) %>
64 <%= link_to t(".traces"), :controller => "traces", :action => "index", :display_name => @user.display_name %>
65 <span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
68 <!-- Displaying another user's profile page -->
71 <%= link_to t(".send message"), new_message_path(@user) %>
74 <%= link_to t(".diary"), :controller => "diary_entries", :action => "index", :display_name => @user.display_name %>
75 <span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
78 <%= link_to t(".comments"), diary_comments_path(@user) %>
81 <% if current_user and current_user.friends_with?(@user) %>
82 <%= link_to t(".remove as friend"), remove_friend_path(:display_name => @user.display_name), :method => :post %>
83 <% elsif current_user %>
84 <%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name), :method => :post %>
86 <%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name) %>
90 <% if @user.blocks.exists? %>
92 <%= link_to t(".block_history"), user_blocks_on_path(@user) %>
93 <span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
97 <% if @user.moderator? and @user.blocks_created.exists? %>
99 <%= link_to t(".moderator_history"), user_blocks_by_path(@user) %>
100 <span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
104 <% if can?(:create, UserBlock) %>
106 <%= link_to t(".create_block"), new_user_block_path(@user) %>
110 <% if current_user and @user.id != current_user.id %>
112 <%= report_link(t(".report"), @user) %>
119 <div class='text-muted'>
121 <dl class="list-inline">
122 <dt class="list-inline-item m-0"><%= t ".mapper since" %></dt>
123 <dd class="list-inline-item"><%= l @user.created_at.to_date, :format => :long %></dd>
124 <% unless @user.terms_agreed %>
125 <dt class="list-inline-item m-0"><%= t ".ct status" %></dt>
126 <dd class="list-inline-item">
127 <% if @user.terms_seen? -%>
128 <%= t ".ct declined" %>
130 <%= t ".ct undecided" %>
138 <% if can?(:set_status, User) || can?(:destroy, User) %>
139 <nav class='secondary-actions'>
140 <ul class='clearfix'>
141 <% if can? :set_status, User %>
142 <% if @user.may_activate? %>
144 <%= link_to t(".activate_user"), set_status_user_path(:event => "activate", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
148 <% if @user.may_unsuspend? %>
150 <%= link_to t(".unsuspend_user"), set_status_user_path(:event => "unsuspend", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
154 <% if @user.may_confirm? %>
156 <%= link_to t(".confirm_user"), set_status_user_path(:event => "confirm", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
160 <% if @user.may_unconfirm? %>
162 <%= link_to t(".unconfirm_user"), set_status_user_path(:event => "unconfirm", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
166 <% if @user.may_hide? %>
168 <%= link_to t(".hide_user"), set_status_user_path(:event => "hide", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
172 <% if @user.may_unhide? %>
174 <%= link_to t(".unhide_user"), set_status_user_path(:event => "unhide", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
179 <% if can?(:destroy, User) && @user.may_soft_destroy? %>
181 <%= link_to t(".delete_user"), user_path(:display_name => @user.display_name), :method => :delete, :data => { :confirm => t(".confirm") } %>
188 <% if current_user and current_user.administrator? -%>
189 <div class='text-muted'>
191 <dl class="list-inline">
192 <dt class="list-inline-item m-0"><%= t ".email address" %></dt>
193 <dd class="list-inline-item"><%= @user.email %></dd>
194 <% unless @user.creation_ip.nil? -%>
195 <dt class="list-inline-item m-0"><%= t ".created from" %></dt>
196 <dd class="list-inline-item"><%= @user.creation_ip %></dd>
198 <dt class="list-inline-item m-0"><%= t ".status" %></dt>
199 <dd class="list-inline-item"><%= @user.status.capitalize %></dd>
200 <dt class="list-inline-item m-0"><%= t ".spam score" %></dt>
201 <dd class="list-inline-item"><%= @user.spam_score %></dd>
210 <div class="richtext text-break clearfix"><%= @user.description.to_html %></div>
212 <% if current_user and @user.id == current_user.id %>
214 <%= link_to t(".edit_profile"), edit_profile_path, :class => "btn btn-outline-primary" %>