upgrade forms to update and create person

This commit is contained in:
2014-11-07 16:26:15 +01:00
parent 2a3ebb3659
commit 2358e2a9bb
6 changed files with 9 additions and 43 deletions

View File

@@ -6,12 +6,12 @@
{% block personcontent %}
{% form_theme form 'CLChillMainBundle:Form:fields.html.twig' %}
{% form_theme form 'ChillMainBundle:Form:fields.html.twig' %}
{{ form_start(form) }}
{% set include_temp = 'ChillPersonBundle:Form:form_control.html.twig' %}
{% set include_args = {'return_key': 'chill_person_view',
'return_args' : { 'id' : person.id} } %}
'return_args' : { 'person_id' : person.id} } %}
{{ include(include_temp, include_args) }}
<fieldset>
@@ -32,26 +32,15 @@
{{ include(include_temp, include_args) }}
<fieldset>
<legend><h2>{{ 'views.Person.view.family'|trans }}</h2></legend>
{{ form_row(form.civil_union, {'label' : 'views.Person.view.civil_union'}) }}
{{ form_row(form.nbOfChild, {'label' : 'views.Person.view.nb_of_childs'}) }}
</fieldset>
{{ include(include_temp, include_args) }}
<fieldset>
<legend><h2>{{ 'views.Person.view.administrative'|trans }}</h2></legend>
{{ form_row(form.nationality, { 'label' : 'views.Person.view.nationality'|trans} ) }}
{{ form_row(form.belgian_national_number, { 'label' : 'views.Person.view.national_number'}) }}
</fieldset>
{{ include(include_temp, include_args) }}
<fieldset>
<legend><h2>{{ 'views.Person.view.contact'|trans }}</h2></legend>
{{ form_row(form.address, {'label' : 'views.Person.view.address'}) }}
{{ form_row(form.email, {'label': 'views.Person.view.email'}) }}
</fieldset>