1 <div id=
"form-dossier">
3 <h2>Classement et salaire de base
</h2>
8 <h3>Ancien dossier
<span class=
"info">(le cas échéant)
</span></h3>
14 <span id=
"info_employe" class=
"info">Coord info
</span>
18 <th>{{ form.statut_anterieur.label_tag }}
</th>
19 <th>Type de contrat
</th>
20 <th>{{ form.classement_anterieur.label_tag }}
</th>
21 <th>Valeur du point
</th>
22 <th colspan=
"4">{{ form.salaire_anterieur.label_tag }}
</th>
26 {{ form.statut_anterieur }}
<br />
30 <td>{{ form.classement_anterieur }}
</td>
32 <td>{{ form.salaire_anterieur }}
</td>
39 <h3>Précédant titulaire
<span class=
"info">(le cas échéant)
</span></h3>
44 {{ form.employe_anterieur }} -
45 <span id=
"info_employe" class=
"info">Nom du poste visé
</span><br />
46 {{ form.employe_anterieur.errors }}
50 <th>{{ form.statut_titulaire_anterieur.label_tag }}
</th>
52 <th>{{ form.classement_titulaire_anterieur.label_tag }}
</th>
53 <th>Valeur du point
</th>
54 <th colspan=
"4">{{ form.salaire_titulaire_anterieur.label_tag }}
</th>
57 <td>{{ form.statut_titulaire_anterieur }}
</td>
60 {{ form.classement_titulaire_anterieur }}
<br />
64 <td>{{ form.salaire_titulaire_anterieur }}
</td>
71 <h3>Proposition de classement
</h3>
77 <span id=
"info_employe" class=
"info">Nom du poste visé
</span>
82 <th>{{ form.classement.label_tag }}
</th>
83 <th>Valeur du point
</th>
84 <th colspan=
"4">{{ form.salaire.label_tag }}
</th>
89 {{ form.classement }}
<br />
93 <td>{{ form.salaire }}
</td>
94 <td>{{ form.devise }}
</td>
102 <script type=
"text/javascript">
103 function activateDossierDropDowns() {
104 $('#id_classement, #id_devise').change(loadSalaire);
106 function loadSalaire() {
107 $.getJSON('{% url salaire %}/' + $('#implantation').val() + '/' +
108 $('#id_devise').val() + '/' + $('#id_classement').val(),
111 $('#id_salaire').val(data.salaire_devise);
114 activateDossierDropDowns();
119 Comparaison salariale
121 dans la région pour les employés occupant un poste similaire
132 {{ form.statut.label_tag }}
135 {{ form.statut }}
<br />
136 {{ form.statut.errors }}
141 {{ form.organisme_bstg.label_tag }}
144 {{ form.organisme_bstg }}
<br />
145 {{ form.organisme_bstg.errors }}
150 {{ form.remplacement.label_tag }}
153 {{ form.remplacement }}
<br />
154 {{ form.remplacement.errors }}
159 {{ form.statut_residence.label_tag }}
162 {{ form.statut_residence }}
<br />
163 {{ form.statut_residence.errors }}
168 {{ form.regime_travail.label_tag }}
171 {{ form.regime_travail }}
<br />
172 {{ form.regime_travail.errors }}
177 {{ form.regime_travail_nb_heure_semaine.label_tag }}
180 {{ form.regime_travail_nb_heure_semaine }}
<br />
181 {{ form.regime_travail_nb_heure_semaine.errors }}
186 {{ form.type_contrat.label_tag }}
189 {{ form.type_contrat }}
<br />
190 {{ form.type_contrat.errors }}
195 {{ form.contrat_date_debut.label_tag }}
198 {{ form.contrat_date_debut }}
<br />
199 {{ form.contrat_date_debut.errors }}
204 {{ form.contrat_date_fin.label_tag }}
207 {{ form.contrat_date_fin }}
<br />
208 {{ form.contrat_date_fin.errors }}
216 <h2>Accès et ouverture des comptes
</h2>
221 {{ form.compte_compta.label_tag }}
224 {{ form.compte_compta }}
<br />
225 {{ form.compte_compta.errors }}
230 {{ form.compte_courriel.label_tag }}
233 {{ form.compte_courriel }}
<br />
234 {{ form.compte_courriel.errors }}
242 <h2>Pièces jointes
</h2>
243 <p class=
"info">CV, lettre de motivation...
</p>
244 {% include
"dae/pieces.html" %}