1 {% extends 'base.html' %}
4 <link rel=
"stylesheet" type=
"text/css" href=
"{{ STATIC_URL }}css/tablesorter.css" media=
"screen"/>
5 <script type=
"text/javascript" src=
"{{ STATIC_URL }}js/jquery-1.5.1.min.js"></script>
6 <script type=
"text/javascript" src=
"{{ STATIC_URL }}js/jquery.tablesorter.min.js"></script>
8 $
(document
).ready(function() {
9 $
(".tablesorter").tablesorter({
12 3: {sorter
: "shortDate"},
13 4: {sorter
: "shortDate"}
21 {% block title %}RH - DAE - Postes{% endblock %}
22 {% block titre %}Ressources humaines{% endblock %}
23 {% block sous_titre %}Demande d'autorisation d'engagement{% endblock %}
26 <h1>Liste des demandes d'autorisation de poste
</h1>
28 <h2>Mes postes à traiter
</h2>
29 {% if postes_a_traiter %}
30 <table class=
"tablesorter">
31 <thead>{% include
"dae/poste-header.html" %}
</thead>
33 {% for poste in postes_a_traiter %}
34 {% include
"dae/poste-row.html" %}
39 <p>Vous n'avez aucun poste à traiter.
</p>
42 <h2>Les postes en cours de validation
</h2>
43 {% if postes_en_cours %}
44 <table class=
"tablesorter">
45 <thead>{% include
"dae/poste-header.html" %}
</thead>
47 {% for poste in postes_en_cours %}
48 {% include
"dae/poste-row.html" %}
53 <p>Il n'y a aucun poste en cours de validation.
</p>