1 {% extends 'base.html' %}
4 {% block title %}RH - DAE - Embauche{% endblock %}
5 {% block titre %}Ressources humaines{% endblock %}
6 {% block sous_titre %}Demande d'autorisation d'embauche{% endblock %}
9 <script src=
"{{ MEDIA_URL }}js/jquery-1.5.1.min.js"
10 type=
"text/javascript"></script>
12 {% comment %} style pour le calendier {% endcomment %}
13 <script type=
"text/javascript">
14 window.__admin_media_prefix__ =
"{% filter escapejs %}{% admin_media_prefix %}{% endfilter %}";
16 <link rel=
"stylesheet" type=
"text/css" href=
"{{ MEDIA_URL }}css/calendrier.css" />
17 <link rel=
"stylesheet" type=
"text/css" href=
"{{ MEDIA_URL }}css/dae.css" />
18 <script type=
"text/javascript" src=
"/admin/jsi18n/"></script>
19 <script type=
"text/javascript" src=
"{% admin_media_prefix %}js/core.js"></script>
20 <script type=
"text/javascript" src=
"{% admin_media_prefix %}js/calendar.js"></script>
21 <script type=
"text/javascript" src=
"{% admin_media_prefix %}js/admin/DateTimeShortcuts.js"></script>
22 <script src=
"{{ MEDIA_URL }}js/dae.js" type=
"text/javascript"></script>
23 <script src=
"{{ MEDIA_URL }}js/dae-embauche.js" type=
"text/javascript"></script>
27 <h1>Demandes d'autorisation d'engagement de personnel
</h1>
28 <form action=
"" method=
"post" enctype=
"multipart/form-data">
29 {% if step == 'poste' %}
30 <h2 class=
"section">SECTION
1 - POSTE
</h2>
34 <table cellspacing=
"0">
39 <h2 class=
"section">SECTION
1 - POSTE
</h2>
41 <h2>Poste : {{ poste.nom }} ({{ poste.implantation.nom }})
</h2>
45 <h2 class=
"section">SECTION
2 - PERSONNEL ENGAGÉ
</h2>
48 <div class=
"gauche"><h2>Personne
</h2></div>
50 <table class=
"droite">
53 <th>Mobilité interne
</th>
54 <td colspan=
"3"><input id=
"mobilite_interne" type=
"checkbox" name=
"mobilite_interne" /></td>
60 <div class=
"clear"></div>
61 <table id=
"form-employe">
66 {{ forms.employe.employe.errors }}
68 <td colspan=
"5">{{ forms.employe.employe }}
</td>
72 {{ forms.employe.nom.label_tag }} :
<br />
73 {{ forms.employe.nom.errors }}
75 <td>{{ forms.employe.nom }}
</td>
77 {{ forms.employe.prenom.label_tag }} :
<br />
78 {{ forms.employe.prenom.errors }}
80 <td>{{ forms.employe.prenom }}
</td>
82 {{ forms.employe.genre.label_tag }} :
<br />
83 {{ forms.employe.genre.errors }}
85 <td>{{ forms.employe.genre }}
</td>
90 <input type=
"hidden" id=
"poste" name=
"poste"
91 value=
"dae-{{ poste.id }}" />
92 <input type=
"hidden" id=
"implantation" name=
"implantation"
93 value=
"{{ poste.implantation_id }}" />
94 <input type=
"hidden" id=
"dossier" name=
"dossier"
95 value=
"{{ dossier.id }}" />
99 <h2>Comparaison salariale
</h2>
100 <span class=
"info">dans la région pour les employés occupant un poste similaire
</span>
106 <th>Date fin contrat
</th>
109 <th>Implantation
</th>
110 <th>Famille Emploi
</th>
112 {% for d in comparaison_dossiers %}
114 <td>{{ d.employe }}
</td>
115 <td>{{ d.poste1.type_poste.nom }} {{ d.complement1 }}
</td>
116 <td>{{ d.contrat_date_fin|default:
"en cours" }}
</td>
117 <td>{{ d.get_salaire_display }}
</td>
118 <td>{{ d.get_salaire_euro_display }}
</td>
119 <td>{{ d.poste1.implantation }}
</td>
120 <td>{{ d.poste1.type_poste.famille_emploi.nom }}
</td>
128 <div id=
"form-dossier">
129 {% comment %}Wrapper du formulaire de dossier{% endcomment %}
130 {% with forms.dossier as form %}
131 {% include
"dae/embauche-dossier.html" %}
136 <h2>Pièces jointes
</h2>
137 <p class=
"info">CV, lettre de motivation...
</p>
138 {% include
"dae/pieces.html" %}
141 <h2 class=
"section">SECTION
3 - COÛT GLOBAL
</h2>
147 Vous devez enregister ce dossier avant de pouvoir détailler le
151 <table cellspacing=
"0" id=
"global-cost">
152 {% include 'dae/embauche-remun.html' %}
155 <select id=
"type-remun" name=
"type-remun">
156 <option value=
"">(Ajouter une ligne)
</option>
157 {% for tr in type_remun %}
158 <option value=
"{{ tr.id }}">{{ tr.nom }}
</option>
165 <h2 class=
"section">SECTION
4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)
</h2>
166 <h3>A - Justification du poste
</h3>
167 <p>{{ poste.justification }}
</p>
169 <h3>B - Justification de l'employé
</h3>
170 <p class=
"info">Les questions posées pour la justification apparaîtront après avoir enregistré le dossier.
</p>
173 <th>NOUVEL EMPLOYÉ
</th>
174 <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE
</th>
178 {% with justificationsNouveauForm as form %}
179 {% include
"dae/justifications.html" %}
183 {% with justificationsAutreForm as form %}
184 {% include
"dae/justifications.html" %}
189 <input type=
"submit" name=
"save" value=
"Sauvegarder" />