{% 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 }} {{ 'Active'|trans }} {{ 'type'|trans }}  
{{ tp.name }} {{ (tp.active ? '' : '')|raw }}{{ types|join(', ') }}
    {% if is_granted('CHILL_3PARTY_3PARTY_UPDATE', tp) %}
  • {% endif %} {% if is_granted('CHILL_3PARTY_3PARTY_SHOW', tp) %}
  • {% endif %}
{% endif %} {% if is_granted('CHILL_3PARTY_3PARTY_CREATE') %}
{% endblock %}