{% extends "@ChillMain/layout.html.twig" %} {% block title 'Update third party %name%'|trans({ '%name%': thirdParty.name }) %} {% block content %}

{{ 'Update third party %name%'|trans({ '%name%': thirdParty.name }) }} {{ (thirdParty.active ? 'Active, shown to users' : 'Inactive, not shown to users')|trans }}

{{ form_start(form) }} {{ form_row(form.name) }} {{ form_row(form.type) }} {{ form_row(form.telephone) }} {{ form_row(form.email) }} {{ form_row(form.address) }} {{ form_row(form.active) }} {{ form_row(form.centers) }} {{ form_row(form.comment) }} {{ form_end(form) }}
{% endblock %}