{% extends theme("user/profile_layout.html") %} {% block breadcrumb %}
{% 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 %}