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> | |
5cbf3ffc | 12 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_couts_auf|floatformat:0 }}</th> |
a9e52624 OL |
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> | |
5cbf3ffc OL |
20 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> |
21 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
22 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
23 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
a9e52624 OL |
24 | <td>{{ remun.precision }}</td> |
25 | </tr> | |
26 | {% endfor %} | |
27 | ||
28 | <tr> | |
29 | <th colspan="5">BSTG - Salaire de mise à disposition</th> | |
5cbf3ffc | 30 | <th id="sous-total-aide" class="montant">{{ dossier.get_total_aides_auf|floatformat:0 }}</th> |
a9e52624 OL |
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> | |
5cbf3ffc OL |
38 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> |
39 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
40 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
41 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
a9e52624 OL |
42 | <td>{{ remun.precision }}</td> |
43 | </tr> | |
44 | {% endfor %} | |
45 | ||
46 | <tr> | |
47 | <th colspan="5">TOTAL</th> | |
5cbf3ffc | 48 | <th id="remun-total" class="montant">{{ dossier.get_total_remun|floatformat:0 }}</th> |
a9e52624 OL |
49 | <th>EUR</th> |
50 | </tr> |