{% 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_data['show_last_seen'] %}
Last seen: {{ user.last_seen.strftime('%Y-%m-%d %H:%M') }}
{% 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_data['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_data['show_member_since'] %}

Member since: {{ user.member_since.strftime('%Y-%m-%d') }}

{% 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 %}