{% 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 %}