Commit | Line | Data |
---|---|---|
179f6b49 OL |
1 | <fieldset> |
2 | <h2>Classement et salaire de base</h2> | |
3 | <table> | |
eabaed81 | 4 | <tbody> |
179f6b49 OL |
5 | <tr> |
6 | <td colspan="7"> | |
7 | <h3>Ancien dossier <span class="info">(le cas échéant)</span></h3> | |
8 | </td> | |
9 | </tr> | |
179f6b49 | 10 | <tr> |
eabaed81 OL |
11 | <td colspan="7"> |
12 | {{ employe }} <span class="info">{{ employe.dossier_set.all.reverse }}</span> | |
179f6b49 OL |
13 | </td> |
14 | </tr> | |
179f6b49 OL |
15 | <tr> |
16 | <th>{{ form.classement_anterieur.label_tag }}</th> | |
eabaed81 | 17 | <th>{{ form.salaire_anterieur.label_tag }}</th> |
179f6b49 | 18 | <th>{{ form.statut_anterieur.label_tag }}</th> |
eabaed81 OL |
19 | <th>{{ form.type_contrat.label_tag }}</th> |
20 | <th colpsan="3"></th> | |
179f6b49 OL |
21 | </tr> |
22 | <tr> | |
eabaed81 OL |
23 | <td>{{ form.instance.classement_anterieur|default:"" }}</td> |
24 | <td>{{ form.instance.salaire_anterieur|default:"" }}</td> | |
25 | <td>{{ form.instance.statut_anterieur|default:"" }}</td> | |
26 | <td>{{ form.instance.type_contrat|default:"" }}</td> | |
27 | <td colspan="3"></td> | |
179f6b49 OL |
28 | </tr> |
29 | <tr> | |
30 | <td colspan="7"> | |
31 | <h3>Précédant titulaire <span class="info">(le cas échéant)</span></h3> | |
32 | </td> | |
33 | </tr> | |
34 | <tr> | |
35 | <td colspan="7"> | |
36 | {{ form.instance.employe_anterieur }} | |
37 | {% comment %} - | |
38 | <span id="info_employe" class="info">Nom du poste visé</span> | |
39 | {% endcomment %}<br /> | |
40 | {{ form.employe_anterieur.errors }} | |
41 | </td> | |
42 | </tr> | |
43 | <tr> | |
44 | <th>{{ form.classement_titulaire_anterieur.label_tag }}</th> | |
45 | {% comment %}<th>Valeur du point</th>{% endcomment %} | |
46 | <th colspan="4">{{ form.salaire_titulaire_anterieur.label_tag }}</th> | |
47 | <th>{{ form.statut_titulaire_anterieur.label_tag }}</th> | |
48 | <th></th> | |
49 | </tr> | |
50 | <tr> | |
51 | <td>{{ form.instance.classement_titulaire_anterieur }}<br /> | |
52 | {{ form.classement_titulaire_anterieur.errors }} | |
53 | </td> | |
54 | {% comment %}<td>val point</td>{% endcomment %} | |
55 | <td>{{ form.instance.salaire_titulaire_anterieur }}</td> | |
56 | <td>{% comment %}${% endcomment %}</td> | |
57 | <td>{% comment %}0.00{% endcomment %}</td> | |
58 | <td>{% comment %}€{% endcomment %}</td> | |
59 | <td>{{ form.instance.statut_titulaire_anterieur }}</td> | |
60 | <td></td> | |
61 | </tr> | |
62 | <tr> | |
63 | <td colspan="7"> | |
64 | <h3>Proposition de classement</h3> | |
65 | </td> | |
66 | </tr> | |
67 | {% comment %} | |
68 | <tr> | |
69 | <td colspan="7"> | |
70 | Davin Baragiotta - | |
71 | <span id="info_employe" class="info">Nom du poste visé</span> | |
72 | </td> | |
73 | </tr> | |
74 | {% endcomment %} | |
75 | <tr> | |
76 | <th>{{ form.classement.label_tag }}</th> | |
77 | {% comment %}<th>Valeur du point</th>{% endcomment %} | |
78 | <th colspan="4">{{ form.salaire.label_tag }} en {{ form.devise }}</th> | |
79 | <td colspan="2"></td> | |
80 | </tr> | |
81 | <tr> | |
82 | <td>{{ form.classement }}<br /> | |
83 | {{ form.classement.errors }} | |
84 | </td> | |
85 | {% comment %}<td>val point</td>{% endcomment %} | |
86 | <td>{{ form.salaire }} <span class="info">(fourchette du poste : {{ poste.salaire_min }} {{ poste.devise_min.code }} - {{ poste.salaire_max }} {{ poste.devise_max.code }})</span></td> | |
87 | <td>{% comment %}${% endcomment %}</td> | |
88 | <td>{% comment %}0.00{% endcomment %}</td> | |
89 | <td>€</td> | |
90 | <td colspan="2"></td> | |
91 | </tr> | |
92 | </tbody> | |
93 | </table> | |
94 | </fieldset> | |
95 | ||
96 | <script type="text/javascript"> | |
97 | function activateDossierDropDowns() { | |
98 | $('#id_classement, #id_devise').change(loadSalaire); | |
99 | } | |
100 | function loadSalaire() { | |
101 | $.getJSON('{% url salaire %}/' + $('#implantation').val() + '/' + | |
102 | $('#id_devise').val() + '/' + $('#id_classement').val(), | |
103 | function(data) { | |
104 | $('#id_salaire').val(data.salaire_devise); | |
105 | }); | |
106 | } | |
107 | activateDossierDropDowns(); | |
108 | </script> | |
109 | ||
110 | <fieldset> | |
111 | <h2> | |
112 | Comparaison salariale | |
113 | <span class="info"> | |
114 | dans la région pour les employés occupant un poste similaire | |
115 | </span> | |
116 | </h2> | |
117 | </fieldset> | |
118 | ||
119 | <fieldset> | |
120 | <h2>Contrat</h2> | |
121 | <table> | |
122 | <tbody> | |
123 | <tr> | |
124 | <th>{{ form.type_contrat.label_tag }} :</th> | |
125 | <td colspan="4"> | |
126 | {{ form.type_contrat }}<br /> | |
127 | {{ form.type_contrat.errors }} | |
128 | </td> | |
129 | <th>{{ form.remplacement.label_tag }} :</th> | |
130 | <td> | |
131 | {{ form.remplacement }}<br /> | |
132 | {{ form.remplacement.errors }} | |
133 | </td> | |
134 | </tr> | |
135 | <tr> | |
136 | <th rowspan="2">Durée :</th> | |
137 | <td>du</td> | |
138 | <td> | |
139 | {{ form.contrat_date_debut }}<br /> | |
140 | <span class="info">({{form.contrat_date_debut.help_text }})</span><br /> | |
141 | {{ form.contrat_date_debut.errors }} | |
142 | </td> | |
143 | <td> au </td> | |
144 | <td> | |
145 | {{ form.contrat_date_fin }}<br /> | |
146 | <span class="info">({{form.contrat_date_fin.help_text }})</span><br /> | |
147 | {{ form.contrat_date_fin.errors }} | |
148 | </td> | |
149 | <th>{{ form.regime_travail.label_tag }} :<br />{{ form.regime_travail.errors }}</th> | |
150 | <td> | |
151 | {{ form.regime_travail }} | |
152 | <span class="info">{{ form.regime_travail.help_text }}</span> | |
153 | </td> | |
154 | </tr> | |
155 | <tr> | |
156 | <td colspan="4" class="info"> | |
157 | <p>Pour une durée indéterminée, spécifier uniquement la date de début.</p> | |
158 | </td> | |
159 | <th> | |
160 | {{ form.regime_travail_nb_heure_semaine.label_tag }} :<br /> | |
161 | {{ form.regime_travail_nb_heure_semaine.errors }} | |
162 | </th> | |
163 | <td>{{ form.regime_travail_nb_heure_semaine }}</td> | |
164 | </tr> | |
165 | <tr> | |
166 | <th>Statut : </th> | |
167 | <td colspan="4"> | |
168 | {{ form.statut }} | |
169 | <span class="row"> | |
170 | {{ form.statut_residence }} | |
171 | {% if form.statut.errors %} | |
172 | <br /> | |
173 | {{ form.statut.errors }} | |
174 | {% endif %} | |
175 | {% if form.statut_residence.errors %} | |
176 | <br /> | |
177 | {{ form.statut_residence.errors }} | |
178 | {% endif %} | |
179 | </span> | |
180 | </td> | |
181 | <th>{{ form.organisme_bstg.label_tag }} :</th> | |
182 | <td> | |
183 | {{ form.organisme_bstg }} | |
184 | {% if form.organisme_bstg.errors %} | |
185 | <br /> | |
186 | {{ form.organisme_bstg.errors }} | |
187 | {% endif %} | |
0288adb5 OL |
188 | <span class="info">{{ form.organisme_bstg.help_text }}</span><br/><br/> |
189 | {{ form.organisme_bstg_autre }} | |
190 | <span class="info">{{ form.organisme_bstg_autre.help_text }}</span> | |
179f6b49 OL |
191 | </td> |
192 | </tr> | |
193 | </tbody> | |
194 | </table> | |
195 | </fieldset> | |
196 | ||
197 | <fieldset> | |
198 | <h2>Accès et ouverture des comptes</h2> | |
199 | <table> | |
200 | <tbody> | |
201 | <tr> | |
202 | <th> | |
203 | {{ form.compte_compta.label_tag }} | |
204 | </th> | |
205 | <td> | |
206 | {{ form.compte_compta }}<br /> | |
207 | {{ form.compte_compta.errors }} | |
208 | </td> | |
209 | <th> | |
210 | {{ form.compte_courriel.label_tag }} | |
211 | </th> | |
212 | <td> | |
213 | {{ form.compte_courriel }}<br /> | |
214 | {{ form.compte_courriel.errors }} | |
215 | </td> | |
216 | </tr> | |
217 | </tbody> | |
218 | </table> | |
219 | </fieldset> | |
d766bf2c | 220 |