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 sous_titre %}Demande d'autorisation d'engagement{% endblock %}
24 <h1>Liste des demandes d'autorisation de poste
</h1>
26 <h2>Mes postes à traiter
</h2>
27 {% if postes_a_traiter %}
28 <table class=
"tablesorter">
29 <thead>{% include
"dae/poste-header.html" %}
</thead>
31 {% for poste in postes_a_traiter %}
32 {% include
"dae/poste-row.html" %}
37 <p>Vous n'avez aucun poste à traiter.
</p>
40 <h2>Les postes en cours de validation
</h2>
41 {% if postes_en_cours %}
42 <table class=
"tablesorter">
43 <thead>{% include
"dae/poste-header.html" %}
</thead>
45 {% for poste in postes_en_cours %}
46 {% include
"dae/poste-row.html" %}
51 <p>Il n'y a aucun poste en cours de validation.
</p>