mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
48 lines
971 B
Twig
48 lines
971 B
Twig
|
|
{% if form.civility is defined %}
|
|
{{ form_row(form.civility) }}
|
|
{% endif %}
|
|
|
|
{{ form_row(form.name) }}
|
|
|
|
{% if form.firstname is defined %}
|
|
{{ form_row(form.firstname) }}
|
|
{% endif %}
|
|
|
|
|
|
{% if form.nameCompany is defined %}
|
|
{{ form_row(form.nameCompany) }}
|
|
{{ form_row(form.acronym) }}
|
|
{% endif %}
|
|
|
|
{% if form.profession is defined %}
|
|
{{ form_row(form.profession) }}
|
|
{% endif %}
|
|
|
|
{{ form_row(form.typesAndCategories) }}
|
|
|
|
{{ form_row(form.telephone) }}
|
|
{{ form_row(form.telephone2) }}
|
|
{{ form_row(form.email) }}
|
|
|
|
{% if form.contactDataAnonymous is defined %}
|
|
{{ form_row(form.contactDataAnonymous) }}
|
|
{% endif %}
|
|
|
|
{% if form.address is defined %}
|
|
{{ form_row(form.address) }}
|
|
{% endif %}
|
|
|
|
{% if form.activeChildren is defined %}
|
|
<h2>{{ 'Contacts'|trans }}</h2>
|
|
{{ form_widget(form.activeChildren) }}
|
|
{% endif %}
|
|
|
|
{{ form_row(form.comment) }}
|
|
|
|
{% if form.centers is defined %}
|
|
{{ form_row(form.centers) }}
|
|
{% endif %}
|
|
|
|
{{ form_row(form.active) }}
|