Commit | Line | Data |
---|---|---|
cb1d62b5 NC |
1 | <tr> |
2 | <th>Type</th> | |
057763bc OL |
3 | <th>Devise locale</th> |
4 | <th>Mensuel</th> | |
5 | <th>Annuel</th> | |
cb1d62b5 NC |
6 | <th colspan="2">Conversion en Euros</th> |
7 | <th>Précision</th> | |
8 | </tr> | |
9 | {% for remun in dossier.remuneration_set.all %} | |
10 | <tr> | |
11 | <td>{{ remun.type }}</td> | |
12 | <td> | |
13 | {{ remun.devise }} | |
8629520e NC |
14 | <input type="hidden" id="taux_devise-{{ remun.id }}" |
15 | name="taux_devise-{{ remun.id }}" | |
16 | value="{{ remun.taux_devise }}" /> | |
057763bc OL |
17 | </td> |
18 | <td> | |
8629520e NC |
19 | <input type="text" id="montant_mois-{{ remun.id }}" |
20 | name="montant_mois-{{ remun.id }}" | |
057763bc OL |
21 | value="{{ remun.montant_mois }}" /> |
22 | </td> | |
8629520e NC |
23 | <td><input type="text" id="montant-{{ remun.id }}" |
24 | name="cg-montant-{{ remun.id }}" | |
057763bc OL |
25 | value="{{ remun.montant|default_if_none:'' }}" /> |
26 | </td> | |
27 | <td id="montant_euro_mois-{{ remun.id }}" class="montant"> | |
8629520e | 28 | {{ remun.montant_euro_mois }}</td> |
057763bc OL |
29 | <td id="montant_euro-{{ remun.id }}" class="montant">{{ remun.montant_euro }}</td> |
30 | <td><input type="text" name="cg-precision-{{ remun.id }}" | |
cb1d62b5 NC |
31 | value="{{ remun.precision|default_if_none:'' }}" /></td> |
32 | </tr> | |
33 | {% empty %} | |
34 | <tr> | |
35 | <td colspan="6"> | |
36 | Aucun coût au registre | |
37 | </td> | |
38 | </tr> | |
39 | {% endfor %} |