mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
thirdparty: firstname after name in form
This commit is contained in:
parent
5d7943f871
commit
1031f0d40e
@ -3,11 +3,12 @@
|
||||
{{ form_row(form.civility) }}
|
||||
{% endif %}
|
||||
|
||||
{{ form_row(form.name) }}
|
||||
|
||||
{% if form.firstname is defined %}
|
||||
{{ form_row(form.firstname) }}
|
||||
{% endif %}
|
||||
|
||||
{{ form_row(form.name) }}
|
||||
|
||||
{% if form.nameCompany is defined %}
|
||||
{{ form_row(form.nameCompany) }}
|
||||
|
@ -2,25 +2,25 @@
|
||||
{% block _third_party_active_children_entry_widget %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-3 mb-3">
|
||||
<div class="form-group col-md-6 mb-3">
|
||||
{{ form_widget(form.civility) }}
|
||||
{{ form_errors(form.civility) }}
|
||||
{{ form_label(form.civility) }}
|
||||
</div>
|
||||
<div class="form-group col-md-5 mb-3">
|
||||
{{ form_widget(form.firstname) }}
|
||||
{{ form_errors(form.firstname) }}
|
||||
{{ form_label(form.firstname) }}
|
||||
<div class="form-group col-md-6 mb-3">
|
||||
{{ form_widget(form.profession) }}
|
||||
{{ form_errors(form.profession) }}
|
||||
{{ form_label(form.profession) }}
|
||||
</div>
|
||||
<div class="form-group col-md-5 mb-3">
|
||||
<div class="form-group col-md-6 mb-3">
|
||||
{{ form_widget(form.name) }}
|
||||
{{ form_errors(form.name) }}
|
||||
{{ form_label(form.name) }}
|
||||
</div>
|
||||
<div class="form-group col-md-4 mb-3">
|
||||
{{ form_widget(form.profession) }}
|
||||
{{ form_errors(form.profession) }}
|
||||
{{ form_label(form.profession) }}
|
||||
<div class="form-group col-md-6 mb-3">
|
||||
{{ form_widget(form.firstname) }}
|
||||
{{ form_errors(form.firstname) }}
|
||||
{{ form_label(form.firstname) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
Loading…
x
Reference in New Issue
Block a user