{% load idm_tags i18n %}{% load l10n %}{% line %}
    {% with groups=role.get_main_approvers_for_all_groups %}
    {% with personal_pronoun=groups|get_personal_pronoun_for_groups %}
    {% with intro=personal_pronoun|main_approvers_are_notified %}
        {{intro|localize}}:
        {% include "emails/includes/approvers_groups.txt" %}
    {% endwith %}
    {% endwith %}
    {% endwith %}
{% endline %}
{% line %}
    {% with groups=role.get_additional_approvers_for_all_groups %}
        {% if groups|length_is:"0" %}
            {% trans "Дополнительные подтверждающие отсутствуют" %}
        {% else %}
                {% trans "Кто еще может подтвердить:" %}
                {% include "emails/includes/approvers_groups.txt" %}
        {% endif %}
    {% endwith %}
{% endline %}