{% extends theme("layout.html") %} {% block content %}
{{ user.username }} {% trans %}Info{% endtrans %} {% trans %}User Stats{% endtrans %}
{% if user.avatar %} {% endif %} {% if user|is_online %} {% else %} {% endif %}
Avatar
Online
Offline
{% trans %}All Topics{% endtrans %}
{% trans %}All Posts{% endtrans %}
{% if user.notes %} {% autoescape false %} {{ user.notes|markup }} {% endautoescape %} {% else %} {% trans %}User has not added any notes about him.{% endtrans %} {% endif %}
{% 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 %}