{% extends 'pybb/base.html' %} {% load pybb_extras %} {% load i18n %} {% block content %}

{{ profile.username }}

{% if profile.pybb_profile.avatar %}
{% endif %}
{% trans "Statistics" %}
{% trans "Number of posts" %}: {{ profile.posts.all.count }}
{% trans "Number of topics" %}: {{ topic_count }}
{% trans "Date of registration" %}: {% pybb_time profile.date_joined %}
{% trans "Contacts" %}
{% if profile.pybb_profile.location %}
{% trans "Location" %}: {{ profile.pybb_profile.location }}
{% endif %} {% if profile.pybb_profile.site %}
{% trans "Site" %}: {{ profile.pybb_profile.site|urlize }}
{% endif %} {% if profile.pybb_profile.icq %}
ICQ: {{ profile.pybb_profile.icq }}
{% endif %} {% if profile.pybb_profile.jabber %}
Jabber: {{ profile.pybb_profile.jabber }}
{% endif %} {% if profile.pybb_profile.yahoo %}
Yahoo: {{ profile.pybb_profile.yahoo }}
{% endif %} {% if profile.pybb_profile.msn %}
MSN: {{ profile.pybb_profile.msn }}
{% endif %} {% if profile.pybb_profile.aim %}
AIM: {{ profile.pybb_profile.aim }}
{% endif %}
{% if user.is_authenticated %} {% endif %}
{% endblock %}