Commit | Line | Data |
---|---|---|
9a85768a | 1 | {% extends 'base.html' %} |
2 | ||
0140cbd2 | 3 | {% block title %}RH - DAE - Postes{% endblock %} |
9a85768a | 4 | {% block titre %}Ressources humaines{% endblock %} |
5 | {% block sous_titre %}Demande d'autorisation d'embauche{% endblock %} | |
6 | ||
7 | {% block main %} | |
8 | <h1>Liste des demandes d'autorisation de création de poste</h1> | |
9 | ||
a05cc82d | 10 | <form action="" method="post"> |
9a85768a | 11 | <table> |
12 | <tr> | |
13 | <th>Poste</th> | |
14 | <th>Soumis le</th> | |
15 | <th>Soumis par</th> | |
a05cc82d OL |
16 | <th>Validation bureau régional</th> |
17 | <th>Validation DRH</th> | |
18 | <th>Validation secrétaire général</th> | |
19 | <th>Validation recteur</th> | |
9a85768a | 20 | </tr> |
a05cc82d | 21 | {% for poste, premiere_revision, validationForm in postes %} |
9a85768a | 22 | <tr> |
03858ba5 | 23 | <td><a href="{% url poste poste.key %}">{{ poste }}</a></td> |
ad86bbb3 OL |
24 | <td>{{ premiere_revision.date_created|date:"Y-m-d" }}</td> |
25 | <td>{{ premiere_revision.user }}</td> | |
a05cc82d OL |
26 | <td> |
27 | {% if poste.validation_bureau_regional %} | |
28 | <img src="/media/django/img/admin/icon-yes.gif" /> | |
29 | {{ validationForm.validation_bureau_regional.as_hidden }} | |
30 | {% else %} | |
31 | {{ validationForm.validation_bureau_regional }} | |
32 | {% endif %} | |
33 | </td> | |
34 | <td> | |
35 | {% if poste.validation_drh %} | |
36 | <img src="/media/django/img/admin/icon-yes.gif" /> | |
37 | {{ validationForm.validation_drh.as_hidden }} | |
38 | {% else %} | |
39 | {{ validationForm.validation_drh }} | |
40 | {% endif %} | |
41 | </td> | |
42 | <td> | |
43 | {% if poste.validation_secretaire_general %} | |
44 | <img src="/media/django/img/admin/icon-yes.gif" /> | |
45 | {{ validationForm.validation_secretaire_general.as_hidden }} | |
46 | {% else %} | |
47 | {{ validationForm.validation_secretaire_general }} | |
48 | {% endif %} | |
49 | </td> | |
50 | <td> | |
51 | {% if poste.validation_recteur %} | |
52 | <img src="/media/django/img/admin/icon-yes.gif" /> | |
53 | {{ validationForm.validation_recteur.as_hidden }} | |
54 | {% else %} | |
55 | {{ validationForm.validation_recteur }} | |
56 | {% endif %} | |
57 | </td> | |
9a85768a | 58 | </tr> |
a05cc82d | 59 | |
9a85768a | 60 | {% endfor %} |
61 | </table> | |
a05cc82d OL |
62 | |
63 | <input type="submit" value="Étamper" /> | |
64 | </form> | |
9a85768a | 65 | |
66 | {% endblock %} |