Commit | Line | Data |
---|---|---|
c0413a6f OL |
1 | {% extends 'base.html' %} |
2 | {% load adminmedia %} | |
3 | ||
4 | {% block title %}RH - DAE - Poste{% endblock %} | |
5 | {% block titre %}Ressources humaines{% endblock %} | |
6 | {% block sous_titre %} | |
7 | Demande d'autorisation d'embauche | |
8 | {% endblock %} | |
9 | ||
10 | {% block extrahead %} | |
c0413a6f | 11 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
c0413a6f OL |
12 | {% endblock %} |
13 | ||
14 | {% block main %} | |
e6f52402 | 15 | |
0c5f7281 | 16 | <h1 class="gauche">Demande d'autorisation de création de poste</h1> |
5b1edfa0 OL |
17 | <a class="droite bouton-action" target="_blank" href="?mode=pdf">PDF</a> |
18 | <a class="droite bouton-action" href="{% url poste poste.key %}">Modifier</a> | |
0c5f7281 OL |
19 | <div class="visualClear"></div> |
20 | ||
41318fe7 | 21 | {% include "dae/poste_resume.html" %} |
e6f52402 OL |
22 | |
23 | <fieldset> | |
24 | <h2>Validation</h2> | |
25 | ||
26 | <ul> | |
27 | {% for commentaire in poste.historique_desc %} | |
28 | <li>{{ commentaire }}</li> | |
29 | {% endfor %} | |
30 | </ul> | |
31 | ||
32 | <form action="" method="post"> | |
33 | <table> | |
34 | {{ validationForm }} | |
35 | </table> | |
36 | <input type="submit" value="valider" /> | |
37 | </form> | |
38 | </fieldset> | |
39 | ||
40 | ||
c0413a6f | 41 | {% endblock %} |