{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load material_form i18n %} {% block browser_title %}{% blocktrans %}View abi person{% endblocktrans %}{% endblock %} {% block page_title %} {{ object.name }} {% endblock %} {% block content %} arrow_back {% blocktrans %}Back to list{% endblocktrans %} {% if object.profile %}
{% trans "Profile" %}
{% include "abi/progress_column.html" with current=object.current_progress.profile_current total=object.current_progress.profile_total percent=object.current_progress.profile_percent %} {% for field in profile_fields %} {% endfor %}
{% trans "Nickname" %} {{ object.profile.nickname }}
{{ field.name }} {{ field.value|default:"–" }}
{% trans "Update profile" %}
{% if object.profile.current_picture %} {% endif %}
{% trans "Current picture" %}
{% if object.profile.old_picture %} {% endif %}
{% trans "Old picture" %}
{% if object.profile.additional_picture_1 %} {% endif %}
{% trans "Additional picture 1" %}
{% if object.profile.additional_picture_2 %} {% endif %}
{% trans "Additional picture 2" %}
{% endif %}
{% trans "More statistics" %}
{% trans "Rankings progress" %}
{% include "abi/progress_column.html" with current=object.current_progress.rankings_current total=object.current_progress.rankings_total percent=object.current_progress.rankings_percent %}
{% trans "Number of submitted quotes" %}
{{ number_of_quotes }}
{% endblock %}