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 création de poste
</h1>
10 <h2>Mes postes à traiter
</h2>
11 {% if postes_a_traiter %}
18 {% for poste in postes_a_traiter %}
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>
27 <p>Vous n'avez aucun poste à traiter.
</p>
30 <h2>Les postes en cours de validation
</h2>
31 {% if postes_vacants %}
38 {% for poste in postes_vacants %}
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>
48 <p>Il n'y a aucun poste en cours de validation.
</p>
51 <h2>Les postes pourvus
</h2>
52 {% if postes_pourvus %}
59 {% for poste in postes_pourvus %}
61 <td><a href=
"{% url poste_consulter poste.key %}">{{ poste }}
</a></td>
62 <td>{{ poste.implantation.region }}
</td>
63 <td>{{ poste.get_etat_display }}
</td>
69 <p>Il n'y a aucun poste pourvu pour l'instant.
</p>