| 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> |
| 16 | <td style="text-align:right">{{ r.montant_avec_regime|floatformat:2 }} {{ r.devise.code }}</td> |
| 17 | <td>{{ r.commentaire|default:"" }}</td> |
| 18 | <td>{{ r.date_debut }}</td> |
| 19 | <td>{{ r.date_fin|default:"indéterminée" }}</td> |
| 20 | </tr> |
| 21 | {% endfor %} |
| 22 | </table> |
| 23 | {% endif %} |
| 24 | |
| 25 | |