da3ca955 |
1 | <div id="form-dossier"> |
2 | <fieldset> |
3 | <h2>Classement et salaire de base</h2> |
4 | <table> |
5 | <tboby> |
6 | <tr class="noborder"> |
7 | <td colspan="7"> |
8 | <h3>Ancien dossier <span class="info">(le cas échéant)</span></h3> |
9 | </td> |
10 | </tr> |
11 | <tr> |
12 | <td colspan="3"> |
13 | Davin Baragiotta - |
14 | <span id="info_employe" class="info">Coord info</span> |
15 | </td> |
16 | </tr> |
17 | <tr> |
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> |
23 | </tr> |
24 | <tr> |
25 | <td> |
26 | {{ form.statut_anterieur }}<br /> |
27 | errors |
28 | </td> |
29 | <td></td> |
30 | <td>{{ form.classement_anterieur }}</td> |
31 | <td></td> |
32 | <td>{{ form.salaire_anterieur }}</td> |
33 | <td>$</td> |
34 | <td>0.00</td> |
35 | <td>€</td> |
36 | </tr> |
37 | <tr class="noborder"> |
38 | <td colspan="7"> |
39 | <h3>Précédant titulaire <span class="info">(le cas échéant)</span></h3> |
40 | </td> |
41 | </tr> |
42 | <tr> |
43 | <td colspan="7"> |
44 | {{ form.employe_anterieur }} - |
45 | <span id="info_employe" class="info">Nom du poste visé</span><br /> |
46 | {{ form.employe_anterieur.errors }} |
47 | </td> |
48 | </tr> |
49 | <tr> |
50 | <th>{{ form.statut_titulaire_anterieur.label_tag }}</th> |
51 | <th></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> |
55 | </tr> |
56 | <tr> |
57 | <td>{{ form.statut_titulaire_anterieur }}</td> |
58 | <td></td> |
59 | <td> |
60 | {{ form.classement_titulaire_anterieur }}<br /> |
61 | errors |
62 | </td> |
63 | <td></td> |
64 | <td>{{ form.salaire_titulaire_anterieur }}</td> |
65 | <td>$</td> |
66 | <td>0.00</td> |
67 | <td>€</td> |
68 | </tr> |
69 | <tr class="noborder"> |
70 | <td colspan="7"> |
71 | <h3>Proposition de classement</h3> |
72 | </td> |
73 | </tr> |
74 | <tr> |
75 | <td colspan="7"> |
76 | Davin Baragiotta - |
77 | <span id="info_employe" class="info">Nom du poste visé</span> |
78 | </td> |
79 | </tr> |
80 | <tr> |
81 | <td colspan="2"></td> |
82 | <th>{{ form.classement.label_tag }}</th> |
83 | <th>Valeur du point</th> |
84 | <th colspan="4">{{ form.salaire.label_tag }}</th> |
85 | </tr> |
86 | <tr> |
87 | <td colspan="2"></td> |
88 | <td> |
89 | {{ form.classement }}<br /> |
90 | errors |
91 | </td> |
92 | <td></td> |
93 | <td>{{ form.salaire }}</td> |
94 | <td>{{ form.devise }}</td> |
95 | <td>0.00</td> |
96 | <td>€</td> |
97 | </tr> |
98 | </tboby> |
99 | </table> |
100 | </fieldset> |
101 | |
102 | <script type="text/javascript"> |
103 | function activateDossierDropDowns() { |
104 | $('#id_classement, #id_devise').change(loadSalaire); |
105 | } |
106 | function loadSalaire() { |
107 | $.getJSON('{% url salaire %}/' + $('#implantation').val() + '/' + |
108 | $('#id_devise').val() + '/' + $('#id_classement').val(), |
109 | function(data) { |
110 | console.log(data); |
111 | $('#id_salaire').val(data.salaire_devise); |
112 | }); |
113 | } |
114 | activateDossierDropDowns(); |
115 | </script> |
116 | |
117 | <fieldset> |
118 | <h2> |
119 | Comparaison salariale |
120 | <span class="info"> |
121 | dans la région pour les employés occupant un poste similaire |
122 | </span> |
123 | </h2> |
124 | </fieldset> |
125 | |
126 | <fieldset> |
127 | <h2>Contrat</h2> |
128 | <table> |
129 | <tbody> |
130 | <tr> |
131 | <th> |
132 | {{ form.statut.label_tag }} |
133 | </th> |
134 | <td> |
135 | {{ form.statut }}<br /> |
136 | {{ form.statut.errors }} |
137 | </td> |
138 | </tr> |
139 | <tr> |
140 | <th> |
141 | {{ form.organisme_bstg.label_tag }} |
142 | </th> |
143 | <td> |
144 | {{ form.organisme_bstg }}<br /> |
145 | {{ form.organisme_bstg.errors }} |
146 | </td> |
147 | </tr> |
148 | <tr> |
149 | <th> |
150 | {{ form.remplacement.label_tag }} |
151 | </th> |
152 | <td> |
153 | {{ form.remplacement }}<br /> |
154 | {{ form.remplacement.errors }} |
155 | </td> |
156 | </tr> |
157 | <tr> |
158 | <th> |
159 | {{ form.statut_residence.label_tag }} |
160 | </th> |
161 | <td> |
162 | {{ form.statut_residence }}<br /> |
163 | {{ form.statut_residence.errors }} |
164 | </td> |
165 | </tr> |
166 | <tr> |
167 | <th> |
168 | {{ form.regime_travail.label_tag }} |
169 | </th> |
170 | <td> |
171 | {{ form.regime_travail }}<br /> |
172 | {{ form.regime_travail.errors }} |
173 | </td> |
174 | </tr> |
175 | <tr> |
176 | <th> |
177 | {{ form.regime_travail_nb_heure_semaine.label_tag }} |
178 | </th> |
179 | <td> |
180 | {{ form.regime_travail_nb_heure_semaine }}<br /> |
181 | {{ form.regime_travail_nb_heure_semaine.errors }} |
182 | </td> |
183 | </tr> |
184 | <tr> |
185 | <th> |
186 | {{ form.type_contrat.label_tag }} |
187 | </th> |
188 | <td> |
189 | {{ form.type_contrat }}<br /> |
190 | {{ form.type_contrat.errors }} |
191 | </td> |
192 | </tr> |
193 | <tr> |
194 | <th> |
195 | {{ form.contrat_date_debut.label_tag }} |
196 | </th> |
197 | <td> |
198 | {{ form.contrat_date_debut }}<br /> |
199 | {{ form.contrat_date_debut.errors }} |
200 | </td> |
201 | </tr> |
202 | <tr> |
203 | <th> |
204 | {{ form.contrat_date_fin.label_tag }} |
205 | </th> |
206 | <td> |
207 | {{ form.contrat_date_fin }}<br /> |
208 | {{ form.contrat_date_fin.errors }} |
209 | </td> |
210 | </tr> |
211 | </tbody> |
212 | </table> |
213 | </fieldset> |
214 | |
215 | <fieldset> |
216 | <h2>Accès et ouverture des comptes</h2> |
217 | <table> |
218 | <tbody> |
219 | <tr> |
220 | <th> |
221 | {{ form.compte_compta.label_tag }} |
222 | </th> |
223 | <td> |
224 | {{ form.compte_compta }}<br /> |
225 | {{ form.compte_compta.errors }} |
226 | </td> |
227 | </tr> |
228 | <tr> |
229 | <th> |
230 | {{ form.compte_courriel.label_tag }} |
231 | </th> |
232 | <td> |
233 | {{ form.compte_courriel }}<br /> |
234 | {{ form.compte_courriel.errors }} |
235 | </td> |
236 | </tr> |
237 | </tbody> |
238 | </table> |
239 | </fieldset> |
240 | </div> |