{% extends "user.html" %} {% block usercontent %} {% include "user_info.html" %} {% spaceless %}

{% trans counter=questions|length %}{{counter}} Question{% pluralize %}{{counter}} Questions{% endtrans %}

{% endspaceless %} {% include "users_questions.html" %} {% spaceless %}

{% trans counter=answered_questions|length %}{{counter}} Answer{% pluralize %}{{counter}} Answers{% endtrans %}

{% endspaceless %}
{% for answered_question in answered_questions %}
{{ answered_question.answer_score }}
{% endfor %}

{% spaceless %}

{% trans cnt=total_votes %}{{cnt}} Vote{% pluralize %}{{cnt}} Votes {% endtrans %}

{% endspaceless %}
{% trans %}thumb up{% endtrans %} {{up_votes}} {% trans %}thumb down{% endtrans %} {{down_votes}}
{% spaceless %}

{% trans counter=user_tags|length %}{{counter}} Tag{% pluralize %}{{counter}} Tags{% endtrans %}

{% endspaceless %}
{% for tag in user_tags %} × {{ tag.user_tag_usage_count|intcomma }}
{% if loop.index is divisibleby 10 %}
{% endif %} {% endfor %}
{% spaceless %}

{% trans counter=total_awards %}{{counter}} Badge{% pluralize %}{{counter}} Badges{% endtrans %}

{% endspaceless %}
{% for award in awards %}{# todo: translate badge name properly #}  {% trans name=award.name %}{{name}}{% endtrans %} × {{ award.count|intcomma }}
{% if loop.index is divisibleby 3 %}
{% endif %} {% endfor %}
{% endblock %}