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> | |
16 | <td><input name="montant_euro_mois-{{ remun.id }}" | |
17 | value="{{ remun.montant_euro_mois }}" /></td> | |
18 | <td><input name="montant_euro-{{ remun.id }}" | |
19 | value="{{ remun.montant_euro }}" /></td> | |
20 | <td><input name="cg-precision-{{ remun.id }}" | |
21 | value="{{ remun.precision|default_if_none:'' }}" /></td> | |
22 | </tr> | |
23 | {% empty %} | |
24 | <tr> | |
25 | <td colspan="6"> | |
26 | Aucun coût au registre | |
27 | </td> | |
28 | </tr> | |
29 | {% endfor %} |