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 | ||
7ad0191a OL |
10 | <h2>Mes postes à traiter</h2> |
11 | {% if postes_a_traiter %} | |
9a85768a | 12 | <table> |
13 | <tr> | |
14 | <th>Poste</th> | |
5633fa41 OL |
15 | <th>Région</th> |
16 | <th>État</th> | |
9a85768a | 17 | </tr> |
7ad0191a OL |
18 | {% for poste in postes_a_traiter %} |
19 | <tr> | |
20 | <td><a href="{% url poste_consulter poste.key %}">{{ poste }}</a></td> | |
21 | <td>{{ poste.implantation.region }}</td> | |
22 | <td>{{ poste.get_etat_display }}</td> | |
23 | </tr> | |
24 | {% endfor %} | |
25 | </table> | |
26 | {% else %} | |
27 | <p>Vous n'avez aucun poste à traiter.</p> | |
28 | {% endif %} | |
29 | ||
30 | <h2>Les postes en cours de validation</h2> | |
31 | {% if postes_vacants %} | |
32 | <table> | |
33 | <tr> | |
34 | <th>Poste</th> | |
35 | <th>Région</th> | |
36 | <th>État</th> | |
37 | </tr> | |
38 | {% for poste in postes_vacants %} | |
39 | <tr> | |
40 | <td><a href="{% url poste_consulter poste.key %}">{{ poste }}</a></td> | |
41 | <td>{{ poste.implantation.region }}</td> | |
42 | <td>{{ poste.get_etat_display }}</td> | |
43 | </tr> | |
44 | ||
45 | {% endfor %} | |
46 | </table> | |
47 | {% else %} | |
48 | <p>Il n'y a aucun poste en cours de validation.</p> | |
49 | {% endif %} | |
50 | ||
51 | <h2>Les postes pourvus</h2> | |
52 | {% if postes_pourvus %} | |
53 | <table> | |
54 | <tr> | |
55 | <th>Poste</th> | |
56 | <th>Région</th> | |
57 | <th>État</th> | |
58 | </tr> | |
59 | {% for poste in postes_pourvus %} | |
9a85768a | 60 | <tr> |
c0413a6f | 61 | <td><a href="{% url poste_consulter poste.key %}">{{ poste }}</a></td> |
5633fa41 OL |
62 | <td>{{ poste.implantation.region }}</td> |
63 | <td>{{ poste.get_etat_display }}</td> | |
9a85768a | 64 | </tr> |
a05cc82d | 65 | |
9a85768a | 66 | {% endfor %} |
67 | </table> | |
7ad0191a OL |
68 | {% else %} |
69 | <p>Il n'y a aucun poste pourvu pour l'instant.</p> | |
70 | {% endif %} | |
a05cc82d | 71 | |
9a85768a | 72 | {% endblock %} |