% content_for :heading do %>
<% if can?(:set_status, User) || can?(:destroy, User) %>
<% end %>
<% if current_user and current_user.administrator? -%>
<%= t ".email address" %> <%= @user.email %>
<% unless @user.creation_ip.nil? -%>
<%= t ".created from" %> <%= @user.creation_ip %>
<% end -%>
<%= t ".status" %> <%= @user.status.capitalize %>
<%= t ".spam score" %> <%= @user.spam_score %>
<% end -%>
<% end %>
<%= @user.description.to_html %>
<% if current_user and @user.id == current_user.id %>
<%= link_to t(".edit_profile"), edit_profile_path, :class => "btn btn-outline-primary" %>
<% end %>