{% extends "CLChillPersonBundle::layout.html.twig" %} {% set activeRouteKey = 'chill_person_view' %} {# This view should receive those arguments: - person #} {% block title %}CLChillPersonBundle:Person:see{% endblock %} {% block personcontent %}

{{ 'views.Person.view.birth'|trans }}

{{ 'views.Person.view.dateOfBirth'|trans }}
{{ person.dateOfBirth.format(date_format) }}
{{ 'views.Person.view.placeOfBirth'|trans }}
{{ person.placeOfBirth }}
{% spaceless %} {% if person.countryOfBirth is not null %} {{ person.countryOfBirth.label }} {% else %} {{ 'views.Person.view.country_of_birth_unknow'|trans }} {% endif %} {% endspaceless %}

{{ 'views.Person.view.family'|trans }}

{{ 'views.Person.view.civil_union'|trans }}
{{ ('person.civil_union.' ~ person.civilUnion)|trans }}
{{ 'views.Person.view.nb_of_childs'|trans }}
{% transchoice person.nbOfChild with { '%nb%': person.nbOfChild } %}views.Person.view.nb_of_childs_count{% endtranschoice %}

{{ 'views.Person.view.administrative'|trans }}

{{ 'views.Person.view.nationality'|trans }}
{% if person.nationality is not null %} {{ person.nationality.label }} {% else %} {{ 'views.Person.view.without_nationality'|trans }} {% endif %}
{{ 'views.Person.view.national_number'|trans }}
{{ person.belgianNationalNumber }}

{{ 'views.Person.view.contact'|trans }}

{{ 'views.Person.view.address'|trans }}
{{ person.address}} 
{{ 'views.Person.view.email'|trans }}
{{ person.email}} 
{% endblock %}