1 {% extends 'base.html' %}
3 {% block title %}RH - DAE - Postes{% endblock %}
4 {% block titre %}Ressources humaines{% endblock %}
5 {% block sous_titre %}Demande d'autorisation d'engagement{% endblock %}
8 <h1>Liste des demandes d'autorisation de poste
</h1>
10 <h2>Mes postes à traiter
</h2>
11 {% if postes_a_traiter %}
19 {% for poste in postes_a_traiter %}
21 <td><a href=
"{% url poste_consulter poste.key %}">{{ poste }}
</a></td>
22 <td>{{ poste.service }}
</td>
23 <td>{{ poste.implantation.region }}
</td>
24 <td>{{ poste.get_etat_display }}
</td>
29 <p>Vous n'avez aucun poste à traiter.
</p>
32 <h2>Les postes en cours de validation
</h2>
33 {% if postes_vacants %}
41 {% for poste in postes_vacants %}
43 <td><a href=
"{% url poste_consulter poste.key %}">{{ poste }}
</a></td>
44 <td>{{ poste.service }}
</td>
45 <td>{{ poste.implantation.region }}
</td>
46 <td>{{ poste.get_etat_display }}
</td>
52 <p>Il n'y a aucun poste en cours de validation.
</p>
55 <h2>Les postes pourvus
</h2>
56 {% if postes_pourvus %}
64 {% for poste in postes_pourvus %}
66 <td><a href=
"{% url poste_consulter poste.key %}">{{ poste }}
</a></td>
67 <td>{{ poste.service }}
</td>
68 <td>{{ poste.implantation.region }}
</td>
69 <td>{{ poste.get_etat_display }}
</td>
75 <p>Il n'y a aucun poste pourvu pour l'instant.
</p>