publik-base-theme/templates/variants/toulouse/combo/json/toulouse_foyer.html

24 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h1>Votre famille</h1>
<div>
{% if not json.err %}
{% with famille=json.data %}
Votre numéro DUI : <strong>{{famille.IDDUI}}</strong>
<table>
<tr><th>Adresse</th><td>{{famille.ADRESSE.NUMVOIE|default:""}}, {{famille.ADRESSE.VOIE|default:""}} {% if famille.ADRESSE.COMPLEMENTVOIE %} {{famille.ADRESSE.COMPLEMENTVOIE}}{% endif %}{% if famille.ADRESSE.COMPLEMENT1 %} {{famille.ADRESSE.COMPLEMENT1}}{% endif %}{% if famille.ADRESSE.COMPLEMENT2 %} {{famille.ADRESSE.COMPLEMENT2}}{% endif %}, {{famille.ADRESSE.CODEPOSTAL|default:""}} {{famille.ADRESSE.VILLE|default:""}}</td></tr>
<tr><th>Téléphone fixe</th><td>{{famille.TELFIXE|default:""}}</td></tr>
<tr><th>Situation familiale</th><td>{{famille.SITUATIONFAMILIALE_label}}</td></tr>
<tr><th>Nombre denfants</th><td>{{famille.REVENUS.NBENFANTSACHARGE}}</td></tr>
{# les infos suivantes sont retirées, cf https://dev.entrouvert.org/issues/40716 #}
{# <tr><th>Numéro dallocataire CAF</th><td>{{famille.REVENUS.NUMEROCAF|default:""}}</td></tr> #}
{# <tr><th>Régime</th><td>{{famille.REVENUS.TYPEREGIME_label|default:""}}</td></tr> #}
</table>
{% endwith %}
{% else %}
{{ json.err_desc|default:"erreur inconnue" }}
{% endif %}
</div>