| 1 | {% extends 'base.html' %} |
| 2 | {% load adminmedia dae %} |
| 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 %} |
| 11 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
| 12 | {% endblock %} |
| 13 | |
| 14 | {% block main %} |
| 15 | |
| 16 | <h1 class="gauche">Demande d'autorisation de création de poste</h1> |
| 17 | <a class="droite bouton-action" target="_blank" href="?mode=vpdf">Format impression</a> |
| 18 | {% if poste|est_editable %}<a class="droite bouton-action" href="{% url poste poste.key %}">Modifier</a>{% endif %} |
| 19 | <div class="visualClear"></div> |
| 20 | |
| 21 | {% include "dae/poste_resume.html" %} |
| 22 | |
| 23 | <fieldset> |
| 24 | <h2>Validations</h2> |
| 25 | |
| 26 | <table> |
| 27 | <tr> |
| 28 | <th>Action</th> |
| 29 | <th>Destinataire de l'action</th> |
| 30 | <th>Commentaire</th> |
| 31 | </tr> |
| 32 | {% for commentaire in poste.historique_desc %} |
| 33 | {% include "dae/ligne_validation.html" %} |
| 34 | {% endfor %} |
| 35 | </table> |
| 36 | |
| 37 | <h2>Votre validation</h2> |
| 38 | <p>Le poste est actuellement à l'état : <span class="note">{{ poste.get_etat_display }}</span>.</p> |
| 39 | |
| 40 | <form action="" method="post"> |
| 41 | <table> |
| 42 | {{ validationForm.commentaire }} |
| 43 | </table> |
| 44 | {{ validationForm.get_input_etats_as_buttons|safe }} |
| 45 | </form> |
| 46 | </fieldset> |
| 47 | |
| 48 | |
| 49 | {% endblock %} |