{% load combo %} {% if json.data.dossier %}
{% if json.data.dossier.beneficiaire.entourage %}

Contacts

{% if json.data.dossier.beneficiaire.entourage.parents %}

Parents

{% for parent in json.data.dossier.beneficiaire.entourage.parents %}
{{parent.role}} {{parent.nom}}
{% if parent.tel_mobile %}
Téléphone mobile {{parent.tel_mobile}}
{% endif %} {% if parent.tel_fixe %}
Téléphone fixe {{parent.tel_fixe}}
{% endif %} {% if parent.email %}
Adresse de courriel {{parent.email}}
{% endif %}
{% endfor %} {% endif %} {% if json.data.dossier.beneficiaire.entourage.aidants %}

Aidants

{% for aidant in json.data.dossier.beneficiaire.entourage.aidants %}
{% if aidant.nom %}
Nom {{aidant.nom}}
{% endif %} {% if aidant.tel_mobile %}
Téléphone mobile {{aidant.tel_mobile}}
{% endif %} {% if aidant.tel_fixe %}
Téléphone fixe {{aidant.tel_fixe}}
{% endif %} {% if aidant.email %}
Adresse de courriel {{aidant.email}}
{% endif %}
{% endfor %} {% endif %} {% else %} Vous n’avez aucun contact d’indiqué. {% endif %}
{% endif %}