Commit | Line | Data |
---|---|---|
c0413a6f | 1 | {% extends 'base.html' %} |
286d0aa9 | 2 | {% load adminmedia dae %} |
c0413a6f OL |
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> |
ef174b89 | 17 | <a class="droite bouton-action" target="_blank" href="?mode=vpdf">Format impression</a> |
286d0aa9 | 18 | {% if poste|est_editable %}<a class="droite bouton-action" href="{% url poste poste.key %}">Modifier</a>{% endif %} |
0c5f7281 OL |
19 | <div class="visualClear"></div> |
20 | ||
41318fe7 | 21 | {% include "dae/poste_resume.html" %} |
e6f52402 OL |
22 | |
23 | <fieldset> | |
3799cafc | 24 | <h2>Validations</h2> |
e6f52402 | 25 | |
e13a5143 OL |
26 | <table> |
27 | <tr> | |
28 | <th>Action</th> | |
e13a5143 OL |
29 | <th>Commentaire</th> |
30 | </tr> | |
e6f52402 | 31 | {% for commentaire in poste.historique_desc %} |
e13a5143 | 32 | {% include "dae/ligne_validation.html" %} |
e6f52402 | 33 | {% endfor %} |
e13a5143 | 34 | </table> |
e6f52402 | 35 | |
56589624 OL |
36 | <h2>Votre validation</h2> |
37 | <p>Le poste est actuellement à l'état : <span class="note">{{ poste.get_etat_display }}</span>.</p> | |
3799cafc | 38 | |
e6f52402 OL |
39 | <form action="" method="post"> |
40 | <table> | |
56589624 | 41 | {{ validationForm.commentaire }} |
e6f52402 | 42 | </table> |
56589624 | 43 | {{ validationForm.get_input_etats_as_buttons|safe }} |
e6f52402 OL |
44 | </form> |
45 | </fieldset> | |
46 | ||
47 | ||
c0413a6f | 48 | {% endblock %} |