{% from 'macros.html' import follow_area with context %} {% from 'bootstrap/nav.html' import render_nav_item %}

{{ user.name }} {{ user.username }}

{% if user.bio %}

{{ user.bio }}

{% endif %}

{% if user.website %} {{ user.website|truncate(30) }}   {% endif %} {% if user.location %} {{ user.location|truncate(30) }}   {% endif %} Joined {{ moment(user.member_since).format('LL') }}

{% if current_user != user %} {% if current_user.can('MODERATE') %} {% if user.locked %}
{% else %}
{% endif %} {% if user.active %}
{% else %}
{% endif %} Email {% endif %} {% if current_user.is_admin %} Edit profile {% endif %} {% endif %}
{{ follow_area(user) }} {% if current_user.is_authenticated and user == current_user %} Edit profile {% endif %}