publik-base-theme/templates/combo/json/rsa-indus.html

31 lines
1.3 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.

{% if not json.err and json.data %}
<h2>Mes indus</h2>
<div>
<div class="rsa-cell--introduction">
<p>Jai perçu à tort trop de RSA.</p>
<p>Jai fait une demande pour réduire ou annuler ma dette.</p>
</div>
<div class="rsa-cell--datas">
<h3>Mes demandes</h3>
<table class="pk-data-table pk-table-headers pk-table-borders pk-table-zebra" style="width:100%;">
<tr>
<th style="width:25%;">Date de réception de ma demande</th>
<th style="width:25%;">Date de réception de mon dossier complet</th>
<th style="width:25%;">Date de la décision</th>
<th>Décision</th>
</tr>
{% for indu in json.data %}
<tr>
<td>{{ indu.dateDebut }}</td>
<td>{{ indu.remiseInduRsaCollection.0.dateReception|default:"Non renseignée" }}</td>
<td>{{ indu.remiseInduRsaCollection.0.gestionCommissionRsaDTO.dateSeance|default:"En cours" }}</td>
<td>{% if indu.remiseInduRsaCollection.0.gestionCommissionRsaDTO.decision.lcDecisionRsa == "Accord" or indu.remiseInduRsaCollection.0.gestionCommissionRsaDTO.decision.lcDecisionRsa == "Refus" %}Je suis informé(e) par courrier.{% else %}En cours{% endif %}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}