{% if personne.image is not null %} Photo de {{ personne.firstName }} {{ personne.name }} {% 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 %}