| 1 | {% extends 'base.html' %} |
| 2 | {% load adminmedia %} |
| 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=pdf">PDF</a> |
| 18 | <a class="droite bouton-action" href="{% url poste poste.key %}">Modifier</a> |
| 19 | <div class="visualClear"></div> |
| 20 | |
| 21 | {% include "dae/poste_resume.html" %} |
| 22 | |
| 23 | <fieldset> |
| 24 | <h2>Validation</h2> |
| 25 | |
| 26 | <ul> |
| 27 | {% for commentaire in poste.historique_desc %} |
| 28 | <li>{{ commentaire }}</li> |
| 29 | {% endfor %} |
| 30 | </ul> |
| 31 | |
| 32 | <form action="" method="post"> |
| 33 | <table> |
| 34 | {{ validationForm }} |
| 35 | </table> |
| 36 | <input type="submit" value="valider" /> |
| 37 | </form> |
| 38 | </fieldset> |
| 39 | |
| 40 | |
| 41 | {% endblock %} |