| 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 | <ul> |
| 27 | {% for commentaire in poste.historique_desc %} |
| 28 | <li>{{ commentaire }}</li> |
| 29 | {% endfor %} |
| 30 | </ul> |
| 31 | |
| 32 | <h2>Votre validation (ou commentaire)</h2> |
| 33 | <p>Ce poste est présentement à l'état <span class="note">{{ poste.get_etat_display }}</span>.</p> |
| 34 | <ul> |
| 35 | <li>Si vous laissez le statut actuel, votre commentaire sera enregistré.</li> |
| 36 | <li>Si vous sélectionnez un autre statut, votre action sera considérée comme une validation, mais vous pourrez toujours ajouter un commentaire par la suite.</li> |
| 37 | </ul> |
| 38 | |
| 39 | <form action="" method="post"> |
| 40 | <table> |
| 41 | {{ validationForm }} |
| 42 | </table> |
| 43 | <input type="submit" value="valider" /> |
| 44 | </form> |
| 45 | </fieldset> |
| 46 | |
| 47 | |
| 48 | {% endblock %} |