0140cbd2 |
1 | {% extends 'base.html' %} |
2 | |
3 | {% block title %}RH - DAE - Embauches{% endblock %} |
4 | {% block titre %}Ressources humaines{% endblock %} |
5 | {% block sous_titre %}Demande d'autorisation d'embauche{% endblock %} |
6 | |
7 | {% block main %} |
8 | <h1>Liste des demandes d'autorisation d'engagement de personnel</h1> |
9 | |
10 | <table> |
11 | <tr> |
12 | <th>Embauche</th> |
13 | <th>Soumis le</th> |
14 | <th>Soumis par</th> |
15 | <th>Valid. rég.</th> |
16 | <th>Valid. RH</th> |
17 | <th>Valid. SG</th> |
18 | <th>Valid. Recteur</th> |
19 | <th>Décision finale</th> |
20 | </tr> |
21 | {% for dossier, premiere_revision in embauches %} |
22 | <tr> |
23 | <td><a href="{% url poste poste.key %}">{{ dossier.poste }}</a></td> |
24 | <td>{{ premiere_revision.date_created|date:"Y-m-d" }}</td> |
25 | <td>{{ premiere_revision.user }}</td> |
26 | <td></td> |
27 | <td></td> |
28 | <td></td> |
29 | <td></td> |
30 | <td></td> |
31 | </tr> |
32 | {% endfor %} |
33 | </table> |
34 | |
35 | {% endblock %} |