{% extends theme("layout.html") %} {% block content %}
{% if user.avatar %} Avatar {% endif %}
{% if user|is_online %} Online {% else %} Offline {% endif %}
{% if current_user.is_authenticated() %} {% trans %}Send a Message{% endtrans %} {% endif %}
{% trans %}Info{% endtrans %}
{% if user.notes %} {{ user.notes|markup|safe }} {% else %} {% trans %}User has not added any notes about him.{% endtrans %} {% endif %}
{% if user.signature %}
{% trans %}Signature{% endtrans %}
{{ user.signature|markup|safe }}
{% endif %}
{% trans %}User Stats{% endtrans %}

{% trans %}Group{% endtrans %}:

{{ user.primary_group.name }}

{% trans %}Joined{% endtrans %}:

{{ user.date_joined|format_date('%b %d %Y') }}

{% trans %}Posts{% endtrans %}:

{{ user.post_count }} ({{ user.posts_per_day }} per day)

{% trans %}Last seen{% endtrans %}:

{%- if user.lastseen -%} {{ user.lastseen|time_since }} {%- else -%} {% trans %}Never seen{% endtrans %} {%- endif -%}

{% trans %}Last post{% endtrans %}:

{%- if user.last_post -%} {{ user.last_post.date_created|time_since }} {%- else -%} {% trans %}Never{% endtrans %} {%- endif -%}

{% trans %}Location{% endtrans %}:

{%- if user.location -%} {{ user.location }} {%- else -%} {% trans %}No Info{% endtrans %} {%- endif -%}

{% trans %}Birthday{% endtrans %}:

{% if user.birthday %} {{ user.birthday|format_date('%b %d %Y') }} {% else %} {% trans %}No Info{% endtrans %} {% endif %} {% if user.gender %} ({{ user.gender }}) {% endif %}

{% endblock %} {% block scripts %} {% endblock %}