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