Commit | Line | Data |
---|---|---|
8d3e2fff PP |
1 | {% extends 'admin/change_form.html' %} |
2 | ||
3 | {% block content %} | |
c7484838 | 4 | <h2>Employé: <a href="{% url admin:rh_employe_change employe.pk %}">{{ employe }}</a></h2> |
5961a2c9 PP |
5 | <h2>Poste</h2> |
6 | <div class="form-row"> | |
7 | <label>Nom:</label> {{ poste_nom }} | |
8 | </div> | |
9 | <div class="form-row"> | |
10 | <label>Service:</label> {{ poste_service }} | |
11 | </div> | |
12 | <div class="form-row"> | |
13 | <label>Implantation:</label> {{ poste_implantation }} | |
14 | </div> | |
15 | ||
8d3e2fff PP |
16 | {{ block.super }} |
17 | ||
18 | <h2>Rémunération cette année</h2> | |
19 | <table> | |
20 | <tr> | |
21 | <th></th> | |
22 | <th>Devise locale</th> | |
23 | <th>Euro</th> | |
24 | </tr> | |
25 | {% for t, m in remun.iteritems %} | |
26 | <tr> | |
27 | <td>{{ t }}</td> | |
28 | <td>{{ m.0 }}</td> | |
29 | <td>{{ m.1 }}</td> | |
30 | </tr> | |
31 | {% endfor %} | |
32 | <tr> | |
33 | <td>Total</td> | |
34 | <td>{{ remun_sum }}</td> | |
35 | <td>{{ remun_sum_euro }}</td> | |
36 | </table> | |
37 | ||
38 | {% endblock %} |