Commit | Line | Data |
---|---|---|
02e69aa2 JPC |
1 | {% if remunerations|length > 0 %} |
2 | <h3>Rémunérations en cours</h3> | |
3 | <table> | |
4 | <tr> | |
5 | <th>Type</th> | |
6 | <th>Nature</th> | |
7 | <th>Montant (devise)</th> | |
8 | <th>Commentaire</th> | |
9 | <th>Date début</th> | |
10 | <th>Date fin</th> | |
11 | </tr> | |
12 | {% for r in dossier.remunerations_en_cours %} | |
13 | <tr> | |
14 | <th>{{ r.type }}</th> | |
15 | <th>{{ r.type.nature_remuneration }}</th> | |
d577833b | 16 | <td style="text-align:right">{{ r.montant|floatformat:2 }} {{ r.devise.code }}</td> |
02e69aa2 JPC |
17 | <td>{{ r.commentaire|default:"" }}</td> |
18 | <td>{{ r.date_debut }}</td> | |
d577833b | 19 | <td>{{ r.date_fin|default:"indéterminée" }}</td> |
02e69aa2 JPC |
20 | </tr> |
21 | {% endfor %} | |
22 | </table> | |
23 | {% endif %} | |
24 | ||
25 |