publik-base-theme/templates/variants/alpes-maritimes-2022/combo/json/sous-dossier-handicap.html

59 lines
1.9 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.

{% load combo %}
{% if json.data %}
<h2>{% if json.data.dossier.IDENTIFICATION.0.PRENOM %}{{json.data.dossier.IDENTIFICATION.0.PRENOM}}{% endif %} {% if json.data.dossier.IDENTIFICATION.0.NOM %}{{json.data.dossier.IDENTIFICATION.0.NOM}}{% endif %}</h2>
{% if json.data.dossier.DEMANDES.PH %}
<div class="cell--body">
<h3>Mes demandes</h3>
<div class="pk-table-wrapper">
<table class="pk-data-table">
<caption>État davancement de vos demandes à ce jour</caption>
<tr>
<th>Date</th>
<th>Objet</th>
<th>État</th>
<th>Étape davancement</th>
<th></th>
</tr>
{% for demande in json.data.dossier.DEMANDES.PH %}
<tr>
<td>{{demande.DT_DMD}}</td>
<td>{{demande.TYPE_MESURE}}</td>
<td>{{demande.ETAPE}}</td>
<td>{% for etape in demande.LISTE_ETAPES %}{% if etape.A_SURLIGNER == 'O' %}{{etape.CATEGORIE}}{% endif %}{% endfor %}</td>
<td><a href="detail-demande-social-ph/?dossier={{json.data.id}}&demande={{demande.ID_MES}}" class="see-more">Voir plus</a></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if json.data.dossier.DROITS.PH %}
<div class="cell--body">
<h3>Mes droits</h3>
<div class="pk-table-wrapper">
<table class="pk-data-table">
<caption>Droits en cours</caption>
<tr>
<th>Objet</th>
<th>Date de début</th>
<th>Date de fin</th>
<th>Décision</th>
</tr>
{% for droit in json.data.dossier.DROITS.PH %}
<tr>
<td>{{droit.LIBELLE}}</td>
<td>{{droit.DATE_DEBUT}}</td>
<td>{{droit.DATE_FIN}}</td>
<td>{{droit.DEC_PREST}}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% endif %}