{% if acl %}
    {% for user in acl | selectattr('is_single_person') | sort(attribute='name') %}
  • {{ user.name }}
  • {% endfor %} {% for group in acl | selectattr('is_group') | sort(attribute='name') %}
  • {{ group.name }}
  • {% endfor %} {% for network in acl | selectattr('is_network') | sort(attribute='name') %}
  • {{ network.name }}
  • {% endfor %}
{% endif %}
{% trans %}Users with modification access to this resource and any parent resources will also have access{% endtrans %}.