Commit | Line | Data |
---|---|---|
a9e52624 OL |
1 | <tr> |
2 | <th>Type</th> | |
3 | <th>Devise locale</th> | |
4 | <th>Mensuel</th> | |
5 | <th>Annuel</th> | |
6 | <th colspan="2">Conversion en Euros</th> | |
7 | <th>Précision</th> | |
8 | </tr> | |
9 | ||
10 | <tr> | |
11 | <th colspan="5">Coûts AUF</th> | |
12 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_couts_auf|floatformat }}</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>{{ remun.devise }}</td> | |
20 | <td class="montant">{{ remun.montant_mois|floatformat }}</td> | |
21 | <td class="montant">{{ remun.montant|floatformat }}</td> | |
22 | <td class="montant">{{ remun.montant_euro_mois|floatformat }}</td> | |
23 | <td class="montant">{{ remun.montant_euro|floatformat }}</td> | |
24 | <td>{{ remun.precision }}</td> | |
25 | </tr> | |
26 | {% endfor %} | |
27 | ||
28 | <tr> | |
29 | <th colspan="5">BSTG - Salaire de mise à disposition</th> | |
30 | <th id="sous-total-aide" class="montant">{{ dossier.get_total_aides_auf|floatformat }}</th> | |
31 | <th>EUR</th> | |
32 | </tr> | |
33 | ||
34 | {% for remun in dossier.get_aides_auf %} | |
35 | <tr class="aide"> | |
36 | <td>{{ remun.type }}</td> | |
37 | <td>{{ remun.devise }}</td> | |
38 | <td class="montant">{{ remun.montant_mois|floatformat }}</td> | |
39 | <td class="montant">{{ remun.montant|floatformat }}</td> | |
40 | <td class="montant">{{ remun.montant_euro_mois|floatformat }}</td> | |
41 | <td class="montant">{{ remun.montant_euro|floatformat }}</td> | |
42 | <td>{{ remun.precision }}</td> | |
43 | </tr> | |
44 | {% endfor %} | |
45 | ||
46 | <tr> | |
47 | <th colspan="5">TOTAL</th> | |
48 | <th id="remun-total" class="montant">{{ dossier.get_total_remun|floatformat }}</th> | |
49 | <th>EUR</th> | |
50 | </tr> |