{% for user_id in group_member_ids %}
{% with user = get_user(user_id) %}
{{ user.name }}
{% if not current_user.is_readonly %}
{% if remove_group_member_form and user_id != current_user.id %}
{% endif %}
{% endif %}
{% endwith %}
{% endfor %}
{% if not current_user.is_readonly %}
{% if edit_group_form %}
{% endif %}
{% if invite_user_form %}
{% endif %}
{% endif %}
{% if leave_group_form %}
{% endif %}
{% if not current_user.is_readonly %}
{% if delete_group_form %}
{% endif %}
{% if edit_group_form %}