{% extends 'pybb/base.html' %} {% load pybb_tags %} {% 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 %}
Create / update your gravatar
{% trans "Statistics" %}
{% trans "Number of topics" %}: {{ topic_count }}
{% trans "Number of posts" %}: {{ target_profile.post_count }}
{% trans "Date of registration" %}: {% pybb_time target_user.date_joined %}
{% 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 %}