{% extends 'pybb/base.html' %} {% load pybb_tags i18n %} {% block title %} {% pybb_get_profile target_user as target_profile %} {{ target_profile.get_display_name }} {% endblock %} {% block content %} {% pybb_get_profile target_user as target_profile %}

{{ target_profile.get_display_name }}

{% include 'pybb/avatar.html' with user=target_user %}
{% trans 'Statistics' %}
{% blocktrans with count=topic_count %}Number of topics: {{ count }}{% endblocktrans %}
{% blocktrans with count=target_profile.post_count %}Number of posts: {{ count }}{% endblocktrans %}
{% pybb_get_time target_user.date_joined as date_joined %} {% blocktrans %}Date of registration: {{ date_joined }} {% endblocktrans %}
{% if request.user|pybb_may_manage_moderators %} {% trans 'Moderator' %} {% endif %} {% if perms.pybb.block_users %} {% if target_user.is_active %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %} {% if target_user.id == user.id %} {% trans 'Edit' %} {% endif %}
{% endblock %}