{% extends "site_base.html" %} {% load thumbnail %} {% load account_tags %} {% user_display user as user_display %} {% load gravatar %} {% load i18n %} {% load ranks %} {% block "metas" %} {{ title }} - {{ settings.SITE_TITLE }} {% endblock "metas" %} {% block "breadcrumbs" %} {% endblock "breadcrumbs" %} {% block "content" %}
{% include "rforum/elements/forum-top.html" %}

{{ _('Username') }}
{{ userprofile.user.username }}
{{ _('Rank') }}
{% rank userprofile.user.username userprofile.user.posts.count %}
{{ _('Num.posts') }}
{{ userprofile.user.posts.count }}
{{ _('Last login') }}
{{ userprofile.user.last_login }}
{{ _('Date joined') }}
{{ userprofile.user.date_joined }}
{% if userprofile.twitter %}
{{ _('Twitter') }}
{% endif %} {% if userprofile.signature %}
{{ _('Firma') }}
{{ userprofile.signature }}
{% endif %}
{% include "rforum/elements/forum-userdetail.html" %}
{% include "rforum/elements/forum-bottom.html" %}
{% endblock "content" %}