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 %} | |
4ada572e | 6 | {% block sous_titre %}Demande d'autorisation d'engagement{% endblock %} |
c0413a6f OL |
7 | |
8 | {% block extrahead %} | |
c0413a6f | 9 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
64af1419 | 10 | <link rel="stylesheet" type="text/css" media="print" href="{{ MEDIA_URL }}css/print.css" /> |
c0413a6f OL |
11 | {% endblock %} |
12 | ||
13 | {% block main %} | |
e6f52402 | 14 | |
0c5f7281 | 15 | <h1 class="gauche">Demande d'autorisation de création de poste</h1> |
64af1419 | 16 | <a class="droite bouton-action" href="#" onclick="window.print(); return false;">Impression</a> |
e7ee680f | 17 | {% if poste|est_editable:request.user %}<a class="droite bouton-action" href="{% url poste poste.key %}">Modifier</a>{% endif %} |
0c5f7281 OL |
18 | <div class="visualClear"></div> |
19 | ||
41318fe7 | 20 | {% include "dae/poste_resume.html" %} |
e6f52402 OL |
21 | |
22 | <fieldset> | |
3799cafc | 23 | <h2>Validations</h2> |
e6f52402 | 24 | |
e13a5143 OL |
25 | <table> |
26 | <tr> | |
27 | <th>Action</th> | |
e13a5143 OL |
28 | <th>Commentaire</th> |
29 | </tr> | |
e6f52402 | 30 | {% for commentaire in poste.historique_desc %} |
e13a5143 | 31 | {% include "dae/ligne_validation.html" %} |
e6f52402 | 32 | {% endfor %} |
e13a5143 | 33 | </table> |
e6f52402 | 34 | |
64af1419 | 35 | <form action="" method="post"> |
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 | 39 | <table> |
483ab3e3 | 40 | {% if validationForm.get_etats_disponibles %}{{ validationForm.commentaire }}{% endif %} |
e6f52402 | 41 | </table> |
56589624 | 42 | {{ validationForm.get_input_etats_as_buttons|safe }} |
e6f52402 OL |
43 | </form> |
44 | </fieldset> | |
45 | ||
64af1419 EMS |
46 | <div class="print-only"> |
47 | <h2>Signatures</h2> | |
48 | <p class="signature"> ____________________________________________________________</p> | |
49 | <p class="signature"> ____________________________________________________________</p> | |
50 | <p class="signature"> ____________________________________________________________</p> | |
51 | </div> | |
e6f52402 | 52 | |
c0413a6f | 53 | {% endblock %} |