{% extends "@ChillMain/layout.html.twig" %} {% block title 'List of third parties'|trans %} {% block content %}
{{ 'No third parties'|trans }}
{% else %}{{ 'Name'|trans }} | {{ 'Active'|trans }} | {{ 'type'|trans }} | |
---|---|---|---|
{{ tp.name }} | {{ (tp.active ? '' : '')|raw }} | {% set types = [] %} {% for t in tp.type %} {% set types = types|merge( [ ('chill_3party.key_label.'~t)|trans ] ) %} {% endfor %}{{ types|join(', ') }} |