{% extends 'template.html.twig' %} {% block titre %}Les détails d'une personne {% endblock %} {% block body %}
{% if personne.image is not null %} Photo de profil {% else %}

Aucune photo disponible

{% endif %}

{{ personne.firstName }} {{ personne.name }}

Age: {{ personne.age }}

Job: {{ personne.job is not null ? personne.job.designation : 'N/A' }}

{% if personne.profile is not null %}

Profile: {{ personne.profile.rs }}

{% endif %} {% if personne.hobbies is not empty %}

Hobbies: {% for hobby in personne.hobbies %} {{ hobby.designation }} {% endfor %}

{% endif %}

{% endblock %}