{% if acl %}
    {% for item in acl|sort(attribute='name')|sort(attribute='principal_type') %} {% if item.principal_type.name in ['user', 'email'] %}
  • {{ item.name }}
  • {% elif item.principal_type.name in ['local_group', 'multipass_group'] %}
  • {{ item.name }}
  • {% elif item.principal_type.name == 'network' %}
  • {{ item.name }}
  • {% elif item.principal_type.name in ['event_role', 'category_role'] %}
  • {{ item.name }}
  • {% elif item.principal_type.name == 'registration_form' %}
  • {{ item.name }}
  • {% else %} {# just in case someone forgets to add a new principal type here... #}
  • {{ item.name }}
  • {% endif %} {% endfor %}
{% endif %}
{% trans %}Users with modification access to this resource and any parent resources will also have access{% endtrans %}.