{# * Copyright (C) 2014, Champs Libres Cooperative SCRLFS, * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . #} {% extends "ChillPersonBundle::layout.html.twig" %} {% set activeRouteKey = '' %} {% block title %}ChillPersonBundle:Person:see{% endblock %} {% block personcontent %} {% form_theme form 'ChillMainBundle:Form:fields.html.twig' %} {{ form_start(form) }}

{{ 'General information'|trans }}

{{ form_row(form.firstName, {'label' : 'First name'}) }} {{ form_row(form.lastName, {'label' : 'Last name'}) }} {{ form_row(form.genre, {'label' : 'Gender'}) }}

{{ 'Birth information'|trans }}

{{ form_row(form.dateOfBirth, {'label': 'Date of birth'} ) }} {{ form_row(form.placeOfBirth, { 'label' : 'Place of birth'} ) }} {{ form_row(form.countryOfBirth, { 'label' : 'Country of birth' } ) }}

{{ 'Administrative information'|trans }}

{{ form_row(form.nationality, { 'label' : 'Nationality'|trans} ) }} {{ form_row(form.spokenLanguages, {'label' : 'Spoken languages'}) }}

{{ 'Contact information'|trans }}

{{ form_row(form.email, {'label': 'Email'}) }} {{ form_row(form.phonenumber, {'label': 'Phonenumber'}) }}
{{ form_row(form.memo, {'label' : 'Memo'} ) }} {{ form_rest(form) }}
{{ 'Return'|trans }}
{{ form_end(form) }} {% endblock personcontent %}