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 | ||
9cab61eb | 10 | {% if dossier.get_couts_auf %} |
a9e52624 OL |
11 | <tr> |
12 | <th colspan="5">Coûts AUF</th> | |
c03cfcd8 OL |
13 | <th id="sous-total-cout" class="montant">{{ dossier.get_total_couts_auf|floatformat:0 }}€</th> |
14 | <th></th> | |
a9e52624 | 15 | </tr> |
9cab61eb OL |
16 | {% endif %} |
17 | ||
a9e52624 OL |
18 | |
19 | {% for remun in dossier.get_couts_auf %} | |
20 | <tr class="cout"> | |
21 | <td>{{ remun.type }}</td> | |
22 | <td>{{ remun.devise }}</td> | |
5cbf3ffc OL |
23 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> |
24 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
25 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
26 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
a9e52624 OL |
27 | <td>{{ remun.precision }}</td> |
28 | </tr> | |
29 | {% endfor %} | |
30 | ||
9cab61eb | 31 | {% if dossier.get_aides_auf %} |
a9e52624 OL |
32 | <tr> |
33 | <th colspan="5">BSTG - Salaire de mise à disposition</th> | |
c03cfcd8 OL |
34 | <th id="sous-total-aide" class="montant">{{ dossier.get_total_aides_auf|floatformat:0 }}€</th> |
35 | <th></th> | |
a9e52624 | 36 | </tr> |
9cab61eb | 37 | {% endif %} |
a9e52624 OL |
38 | |
39 | {% for remun in dossier.get_aides_auf %} | |
40 | <tr class="aide"> | |
41 | <td>{{ remun.type }}</td> | |
42 | <td>{{ remun.devise }}</td> | |
5cbf3ffc OL |
43 | <td class="montant">{{ remun.montant_mois|floatformat:0 }}</td> |
44 | <td class="montant">{{ remun.montant|floatformat:0 }}</td> | |
45 | <td class="montant">{{ remun.montant_euro_mois|floatformat:0 }}</td> | |
46 | <td class="montant">{{ remun.montant_euro|floatformat:0 }}</td> | |
a9e52624 OL |
47 | <td>{{ remun.precision }}</td> |
48 | </tr> | |
49 | {% endfor %} | |
50 | ||
51 | <tr> | |
52 | <th colspan="5">TOTAL</th> | |
c03cfcd8 OL |
53 | <th id="remun-total" class="montant">{{ dossier.get_total_remun|floatformat:0 }}€</th> |
54 | <th></th> | |
a9e52624 | 55 | </tr> |