Commit 1a499c6e by Julien Jorry

Fix solidoume redistribution array

parent a21f96c0
......@@ -41,7 +41,16 @@
<tr>
<td>{{ name }}</td>
<td>{{ adherent.prelevement is defined?adherent.prelevement.montant:'non prélevé' }}</td>
<td>{{ adherent.redistribution is defined?adherent.redistribution.montant:'non redistribué' }}</td>
<td>
{% if adherent.redistribution is defined %}
{{ adherent.redistribution.montant }}
{% else %}
non redistribué
{% if adherent.don is defined and adherent.don == 1 %}
(don)
{% endif %}
{% endif %}
</td>
<td>{{ adherent.prelevement is defined?adherent.prelevement.createdAt|date('d/m/Y H:i'):'' }}</td>
<td>{{ (adherent.don is defined and adherent.don == 1)?'<span class="label label-success">oui</span>':'<span class="label label-danger">non</span>' }}</td>
<td>{{ adherent.item.isRecurrent == 1?'<span class="label label-success">oui</span>':'<span class="label label-danger">non</span>' }}</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment