{% extends "user.html" %} {% load i18n %} {% load extra_tags %} {% load extra_filters %} {% 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" %}

{% trans {{up_votes}} {% trans {{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 %}