<%= render 'users/header' %> <% if @profile.title.present? %>

<%=h @profile.title %>

<% end %>
<%= ts("My pseuds:") %>
<%= print_pseud_list(@user, @pseuds) %>
<%= ts("I joined on:") %>
<%= l(@user.created_at.to_date) %>
<%= ts("My user ID is:") %>
<%= @user.id %>
<% if @profile.about_me.present? %>

<%=h ts("Bio") %>

<%=raw sanitize_field(@profile, :about_me) %>
<% end %> <% if logged_in? && current_user == @user %>

<%= ts("Actions") %>

<% elsif policy(@user.profile).can_edit_profile? %>

<%= t("admin.admin_options.landmark") %>

<% end %>