{% extends "@ChillMain/layout.html.twig" %} {% block title 'List of third parties'|trans %} {% block content %}

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

{% if third_parties|length == 0 %}

{{ 'No third parties'|trans }}

{% else %} {% for tp in third_parties %} {% set types = [] %} {% for t in tp.type %} {% set types = types|merge( [ ('chill_3party.key_label.'~t)|trans ] ) %} {% endfor %} {% endfor %}
{{ 'Name'|trans }} {{ 'Category'|trans }}  
{{ (tp.active ? '' : '')|raw }} {{ tp.name }}{{ types|join(', ') }}
    {% if is_granted('CHILL_3PARTY_3PARTY_UPDATE', tp) %}
  • {% endif %} {% if is_granted('CHILL_3PARTY_3PARTY_SHOW', tp) %}
  • {% endif %}
{% if third_parties|length < pagination.getTotalItems %} {{ chill_pagination(pagination) }} {% endif %} {% endif %} {% if is_granted('CHILL_3PARTY_3PARTY_CREATE') %}
{% endblock %}