{% extends "base.html.j2" %} {% import "materialize/wtf.html.j2" as wtf %} {% block page_content %}

 


user-image

{{ user.username }}

{% if user.role.name != 'User' %} {{ user.role.name }} {% endif %} {% if user.is_public %} Public Profile {% else %} Private Profile {% endif %} {% if user.has_profile_privacy_setting('SHOW_MEMBER_SINCE') %} Member since: {{ user.member_since.strftime('%Y-%m-%d') }} {% endif %} {% if user.has_profile_privacy_setting('SHOW_LAST_SEEN') %} Last seen: {{ user.last_seen.strftime('%Y-%m-%d') }} {% endif %}
{% if user.location %}

 

location_on{{ user.location }}

{% endif %}


{% if user.about_me %}
About me

{{ user.about_me }}

{% endif %}


{% if user.full_name %} {% endif %} {% if user.has_profile_privacy_setting('SHOW_EMAIL') %} {% endif %} {% if user.website %} {% endif %} {% if user.organization %} {% endif %}
person {{ user.full_name }}
email {{ user.email }}
laptop {{ user.website }}
business {{ user.organization }}

 

{% if current_user == user %} {% endif %}

Followed corpora

Public corpora

{% endblock page_content %} {% block scripts %} {{ super() }} {% endblock scripts %}