{% extends 'template.html.twig' %} {% block titre %}Les détails d'une personne {% endblock %} {% block body %}
Aucune photo disponible
{% endif %}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 %}