{% load idm_tags i18n l10n %}
{% strip %}
{% line %}
{% with hide_after="7" %}
    {% for approver in approvers|slice:hide_after %}{% if not forloop.first %}{% if forloop.last %} {{conjunction}} {% else %}, {% endif %}{% endif %}{% if forloop.counter != 7 %}{{ approver|who }}{% endif %}{% endfor %}
    {% if approvers|length > 6 %}
        {% blocktrans trimmed count left_number=approvers|length|sub:6%}
            ещё {{left_number}} человек
        {% plural %}
        ещё {{left_number}} человека
    {% endblocktrans %}
    {% endif %}
{% endwith %}
{% endline %}
{% endstrip %}