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


{% if user.avatar %} user-image {% else %} user-image {% endif %}

{{ user.username }}

{% if user.show_last_seen %}
Last seen: {{ user.last_seen }}
{% 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.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 user.show_member_since %}

Member since: {{ user.member_since }}

{% endif %}


{% if current_user.is_authenticated and current_user.id == user.id %} Edit profile {% endif %}

Groups

Public corpora

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