{% extends "@ChillMain/layout.html.twig" %} {% block title 'List of third parties'|trans %} {% set third_parties = entities %} {% block content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block index_header %}

{{ 'List of third parties'|trans }}

{% endblock %} {% block table_entities %}
{% for tp in third_parties %}
{{ tp|chill_entity_render_box({'render': 'bloc', 'addLink': false, 'showContacts': true, 'isConfidential': (tp.contactDataAnonymous ? true : false) }) }}
    {% if is_granted('CHILL_3PARTY_3PARTY_UPDATE', tp) %}
  • {% endif %} {% if is_granted('CHILL_3PARTY_3PARTY_SHOW', tp) %}
  • {% endif %}
{% endfor %}
{% endblock %} {% block actions_before %}
  • {{ chill_items_per_page(paginator) }}
  • {% endblock %} {% endembed %} {% endblock %} {% block css %} {{ encore_entry_link_tags('page_3party_3party_index') }} {% endblock %}