{% extends "user_profile/user.html" %} {% import "macros.html" as macros %} {% block profilesection %} {% trans %}overview{% endtrans %} {% endblock %} {% block usercontent %} {% include "user_profile/user_info.html" %} {% spaceless %}

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

{% endspaceless %} {% include "user_profile/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 %}
  • {{ macros.tag_widget( tag.name, html_tag = 'div', url_params = "author=" ~ view_user.id ~ "&start_over=true", extra_content = '× ' ~ 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 badge in badges %}{# todo: translate badge name properly #}  {% trans name=badge.name %}{{name}}{% endtrans %}   × {{ badge.award_badge.count()|intcomma }} {% if loop.index is divisibleby 3 %}
{% endif %} {% endfor %}
{% endblock %} {% block endjs %} {% endblock %}