{% extends "user_profile/user.html" %}
{% import "macros.html" as macros %}
{% import "user_profile/macros.html" as user_profile_macros %}
{% block profilesection %}
{% trans %}overview{% endtrans %}
{% endblock %}
{% block usercontent %}
{% include "user_profile/user_info.html" %}
{% if questions %}
{% include "user_profile/user_questions.html" %}
{% endif %}
{% if top_answers %}
{% include "user_profile/user_answers.html" %}
{% endif %}
{% include "user_profile/user_tags.html" %}
{% if settings.BADGES_MODE == 'public' %}
{% include "user_profile/user_badges.html" %}
{% endif %}
{% endblock %}
{% block endjs %}
{{ super() }}
{% compress js %}
{% endcompress %}
{% endblock %}