{% extends "base.html" %} {% block title %}Signatory list{% endblock %} {% block content %}

Signatory list

Search

{{ filter.form.as_table }}

The Groups

{% for role in roles %} {% endfor %} {%for group, role_list in officers %} {%for holders in role_list%} {%endfor%} {%endfor%}
{{role.display_name}}{% if not role.publicly_visible%} (not publicly viewable){%endif%}
{{group}} ({{group.group_status}}) {% if group.abbreviation %}
Abbreviation: {{group.abbreviation}}{% endif %} {% if user.is_authenticated and group.officer_email %}
Officer list: {{group.officer_email}}{% endif %} {% if perms.groups.view_group_private_info %} {% if group.main_account_id %}
Main account: {{group.main_account_id}}{% endif %} {% if group.funding_account_id %}
Funding account: {{group.funding_account_id}}{% endif %} {% endif %}
{% if holders %}
    {% for person in holders %}
  • {{person}}
  • {%endfor%}
{% endif %}
{% endblock %}