{% 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 }}
{% spaceless %}
{{answered_question.title}}
{% endspaceless %}
{% if answered_question.comment_count %}
{% trans comment_count=answered_question.comment_count %}({{comment_count}} comment){% pluralize %}the answer has been commented {{comment_count}} times{% endtrans %}
{% endif %}
{% endfor %}
{% spaceless %}
{% trans cnt=total_votes %}{{cnt}} Vote{% pluralize %}{{cnt}} Votes {% endtrans %}
{% endspaceless %}
{{up_votes}}
|
{{down_votes}}
|
{% spaceless %}
{% trans counter=user_tags|length %}{{counter}} Tag{% pluralize %}{{counter}} Tags{% endtrans %}
{% endspaceless %}
{% spaceless %}
{% trans counter=total_awards %}{{counter}} Badge{% pluralize %}{{counter}} Badges{% endtrans %}
{% endspaceless %}
{% endblock %}