1 {% extends 'base.html' %}
4 <link rel=
"stylesheet" type=
"text/css" href=
"{{ MEDIA_URL }}css/tablesorter.css" media=
"screen"/>
5 <script type=
"text/javascript" src=
"{{ MEDIA_URL }}js/jquery-1.5.1.min.js"></script>
6 <script type=
"text/javascript" src=
"{{ MEDIA_URL }}js/jquery.tablesorter.min.js"></script>
8 $
(document
).ready(function() {
9 $
(".tablesorter").tablesorter({
12 3: {sorter
: "shortDate"},
20 {% block title %}RH - DAE - Postes{% endblock %}
21 {% block titre %}Ressources humaines{% endblock %}
22 {% block sous_titre %}Demande d'autorisation d'engagement{% endblock %}
25 <h1>Liste des demandes d'autorisation de poste
</h1>
27 <h2>Mes postes à traiter
</h2>
28 {% if postes_a_traiter %}
29 <table class=
"tablesorter">
30 <thead>{% include
"dae/poste-header.html" %}
</thead>
32 {% for poste in postes_a_traiter %}
33 {% include
"dae/poste-row.html" %}
38 <p>Vous n'avez aucun poste à traiter.
</p>
41 <h2>Les postes en cours de validation
</h2>
42 {% if postes_non_valides %}
43 <table class=
"tablesorter">
44 <thead>{% include
"dae/poste-header.html" %}
</thead>
46 {% for poste in postes_non_valides %}
47 {% include
"dae/poste-row.html" %}
52 <p>Il n'y a aucun poste en cours de validation.
</p>
55 <h2>Les postes ayant un dossier refusé
</h2>
56 {% if postes_non_valides %}
57 <table class=
"tablesorter">
58 <thead>{% include
"dae/poste-header.html" %}
</thead>
60 {% for poste in postes_avec_dossier_refuse %}
61 {% include
"dae/poste-row.html" %}
66 <p>Il n'y a aucun poste avec un dossier refusé.
</p>
69 <h2>Les postes validés
</h2>
70 {% if postes_valides %}
71 <table class=
"tablesorter">
72 <thead>{% include
"dae/poste-header.html" %}
</thead>
74 {% for poste in postes_valides %}
75 {% include
"dae/poste-row.html" %}
80 <p>Il n'y a aucun poste pourvu pour l'instant.
</p>