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> | |
57bd966c OL |
9 | |
10 | <tr> | |
11 | <th colspan="5">Coûts AUF</th> | |
12 | <th id="sous-total-cout" class="montant"></th> | |
13 | <th>EUR</th> | |
14 | </tr> | |
15 | ||
16 | {% for remun in dossier.get_couts_auf %} | |
17 | <tr class="cout"> | |
18 | <td>{{ remun.type }}</td> | |
19 | <td> | |
20 | {{ remun.devise }} | |
21 | <input type="hidden" id="taux_devise-{{ remun.id }}" | |
22 | name="taux_devise-{{ remun.id }}" | |
23 | value="{{ remun.taux_devise }}" /> | |
24 | </td> | |
25 | <td> | |
26 | <input type="text" id="montant_mois-{{ remun.id }}" | |
27 | name="montant_mois-{{ remun.id }}" | |
28 | value="{{ remun.montant_mois }}" /> | |
29 | </td> | |
30 | <td><input type="text" id="montant-{{ remun.id }}" | |
31 | name="cg-montant-{{ remun.id }}" | |
32 | value="{{ remun.montant|default_if_none:'' }}" /> | |
33 | </td> | |
34 | <td id="montant_euro_mois-{{ remun.id }}" class="montant"> | |
35 | {{ remun.montant_euro_mois }}</td> | |
36 | <td id="montant_euro-{{ remun.id }}" class="montant cumulable">{{ remun.montant_euro }}</td> | |
37 | <td><input type="text" name="cg-precision-{{ remun.id }}" | |
38 | value="{{ remun.precision|default_if_none:'' }}" /></td> | |
39 | </tr> | |
40 | {% empty %} | |
cb1d62b5 | 41 | <tr> |
57bd966c OL |
42 | <td colspan="6"> |
43 | Aucun coût au registre | |
44 | </td> | |
45 | </tr> | |
46 | {% endfor %} | |
47 | ||
48 | ||
49 | <tr> | |
50 | <th colspan="5">BSTG - Salaire de mise à disposition</th> | |
51 | <th id="sous-total-aide" class="montant"></th> | |
52 | <th>EUR</th> | |
53 | </tr> | |
54 | ||
55 | {% for remun in dossier.get_aides_auf %} | |
56 | <tr class="aide"> | |
cb1d62b5 NC |
57 | <td>{{ remun.type }}</td> |
58 | <td> | |
59 | {{ remun.devise }} | |
8629520e NC |
60 | <input type="hidden" id="taux_devise-{{ remun.id }}" |
61 | name="taux_devise-{{ remun.id }}" | |
62 | value="{{ remun.taux_devise }}" /> | |
057763bc OL |
63 | </td> |
64 | <td> | |
8629520e NC |
65 | <input type="text" id="montant_mois-{{ remun.id }}" |
66 | name="montant_mois-{{ remun.id }}" | |
057763bc OL |
67 | value="{{ remun.montant_mois }}" /> |
68 | </td> | |
8629520e NC |
69 | <td><input type="text" id="montant-{{ remun.id }}" |
70 | name="cg-montant-{{ remun.id }}" | |
057763bc OL |
71 | value="{{ remun.montant|default_if_none:'' }}" /> |
72 | </td> | |
73 | <td id="montant_euro_mois-{{ remun.id }}" class="montant"> | |
8629520e | 74 | {{ remun.montant_euro_mois }}</td> |
57bd966c | 75 | <td id="montant_euro-{{ remun.id }}" class="montant cumulable">{{ remun.montant_euro }}</td> |
057763bc | 76 | <td><input type="text" name="cg-precision-{{ remun.id }}" |
cb1d62b5 NC |
77 | value="{{ remun.precision|default_if_none:'' }}" /></td> |
78 | </tr> | |
79 | {% empty %} | |
80 | <tr> | |
81 | <td colspan="6"> | |
82 | Aucun coût au registre | |
83 | </td> | |
84 | </tr> | |
85 | {% endfor %} | |
57bd966c OL |
86 | |
87 | <tr> | |
88 | <th colspan="5">TOTAL</th> | |
89 | <th id="remun-total" class="montant"></th> | |
90 | <th>EUR</th> | |
91 | </tr> |