{% extends "user.html" %} {% load i18n %} {% load extra_tags %} {% load humanize %} {% block usercontent %}
{{questions|length}}

{% trans "User questions" %}

{% include "users_questions.html" %}

 

{{answered_questions|length}}

{% trans "Answers" %}

{% for answered_question in answered_questions %}
{{ answered_question.vote_count }}
{% endfor %}

 

{{total_votes}}

{% trans "votes total" %}

{{up_votes}} {{down_votes}}

 

{{tags|length}}

{% trans "Tags" %}

{% for tag in tags%} × {{ tag.used_count|intcomma }}
{% if forloop.counter|divisibleby:"10" %}
{% endif %} {% endfor %}

 

{{total_awards}}

{% trans "Badges" %}

{% for award in awards %}  {{ award.name }} × {{ award.count|intcomma }}
{% if forloop.counter|divisibleby:"6" %}
{% endif %} {% endfor %}
{% endblock %}