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> | |
29 | <th>Destinataire de l'action</th> | |
30 | <th>Commentaire</th> | |
31 | </tr> | |
e6f52402 | 32 | {% for commentaire in poste.historique_desc %} |
e13a5143 | 33 | {% include "dae/ligne_validation.html" %} |
e6f52402 | 34 | {% endfor %} |
e13a5143 | 35 | </table> |
e6f52402 | 36 | |
56589624 OL |
37 | <h2>Votre validation</h2> |
38 | <p>Le poste est actuellement à l'état : <span class="note">{{ poste.get_etat_display }}</span>.</p> | |
3799cafc | 39 | |
e6f52402 OL |
40 | <form action="" method="post"> |
41 | <table> | |
56589624 | 42 | {{ validationForm.commentaire }} |
e6f52402 | 43 | </table> |
56589624 | 44 | {{ validationForm.get_input_etats_as_buttons|safe }} |
e6f52402 OL |
45 | </form> |
46 | </fieldset> | |
47 | ||
48 | ||
c0413a6f | 49 | {% endblock %} |