{% extends 'base.html.twig' %} {% set menu = 'resources' %} {% block body %} {% include '_partials/back_button.html.twig' with { url: path('user_index'), text: "users.back"|trans } %}

{{ "calendars.delegates.for"|trans({'what': principal.displayName}) }} {% if delegation %} + {{ "calendars.delegates.add"|trans }} {% endif %}

{% if delegation %} {% for delegate in principalProxyRead.delegees %} {% include '_partials/delegate_row.html.twig' with {has_write: false} %} {% endfor %} {% for delegate in principalProxyWrite.delegees %} {% include '_partials/delegate_row.html.twig' with {has_write: true} %} {% endfor %} {% else %} {% endif %}
{% include '_partials/delete_modal.html.twig' with {flavour: 'delegates'} %} {% include '_partials/add_delegate_modal.html.twig' with {principals: allPrincipals} %} {% endblock %}