Commit | Line | Data |
---|---|---|
cb1d62b5 NC |
1 | <tr> |
2 | <th>Type</th> | |
3 | <th colspan="2">Devise locale</th> | |
4 | <th colspan="2">Conversion en Euros</th> | |
5 | <th>Précision</th> | |
6 | </tr> | |
7 | {% for remun in dossier.remuneration_set.all %} | |
8 | <tr> | |
9 | <td>{{ remun.type }}</td> | |
10 | <td> | |
11 | {{ remun.devise }} | |
12 | <input name="montant_mois-{{ remun.id }}" | |
13 | value="{{ remun.montant_mois }}" /></td> | |
14 | <td><input name="cg-montant-{{ remun.id }}" | |
15 | value="{{ remun.montant|default_if_none:'' }}" /></td> | |
ee91bc95 NC |
16 | <td>{{ remun.montant_euro_mois }}</td> |
17 | <td>{{ remun.montant_euro }}</td> | |
cb1d62b5 NC |
18 | <td><input name="cg-precision-{{ remun.id }}" |
19 | value="{{ remun.precision|default_if_none:'' }}" /></td> | |
20 | </tr> | |
21 | {% empty %} | |
22 | <tr> | |
23 | <td colspan="6"> | |
24 | Aucun coût au registre | |
25 | </td> | |
26 | </tr> | |
27 | {% endfor %} |