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> |
4d25e2ba |
131 | <th>{{ form.type_contrat.label_tag }} :</th> |
132 | <td colspan="4"> |
133 | {{ form.type_contrat }}<br /> |
134 | {{ form.type_contrat.errors }} |
da3ca955 |
135 | </td> |
4d25e2ba |
136 | <th>{{ form.remplacement.label_tag }} :</th> |
da3ca955 |
137 | <td> |
138 | {{ form.remplacement }}<br /> |
139 | {{ form.remplacement.errors }} |
140 | </td> |
141 | </tr> |
142 | <tr> |
4d25e2ba |
143 | <th rowspan="2">Durée :</th> |
144 | <td>du</td> |
da3ca955 |
145 | <td> |
4d25e2ba |
146 | {{ form.contrat_date_debut }}<br /> |
147 | <span class="info">({{form.contrat_date_debut.help_text }})</span><br /> |
148 | {{ form.contrat_date_debut.errors }} |
da3ca955 |
149 | </td> |
4d25e2ba |
150 | <td> au </td> |
da3ca955 |
151 | <td> |
4d25e2ba |
152 | {{ form.contrat_date_fin }}<br /> |
153 | <span class="info">({{form.contrat_date_fin.help_text }})</span><br /> |
154 | {{ form.contrat_date_fin.errors }} |
da3ca955 |
155 | </td> |
4d25e2ba |
156 | <th>{{ form.regime_travail.label_tag }} :<br />{{ form.regime_travail.errors }}</th> |
da3ca955 |
157 | <td> |
4d25e2ba |
158 | {{ form.regime_travail }} |
159 | <span class="info">{{ form.regime_travail.help_text }}</span> |
da3ca955 |
160 | </td> |
161 | </tr> |
162 | <tr> |
4d25e2ba |
163 | <td colspan="4" class="info"> |
164 | <p>Pour une durée indéterminée, spécifier uniquement la date de début.</p> |
da3ca955 |
165 | </td> |
da3ca955 |
166 | <th> |
4d25e2ba |
167 | {{ form.regime_travail_nb_heure_semaine.label_tag }} :<br /> |
168 | {{ form.regime_travail_nb_heure_semaine.errors }} |
da3ca955 |
169 | </th> |
4d25e2ba |
170 | <td>{{ form.regime_travail_nb_heure_semaine }}</td> |
171 | </tr> |
172 | <tr> |
173 | <th>Statut : </th> |
174 | <td colspan="4"> |
4d25e2ba |
175 | {{ form.statut }} |
dfc2c344 |
176 | <span class="row"> |
4d25e2ba |
177 | {{ form.statut_residence }} |
178 | {% if form.statut.errors %} |
179 | <br /> |
180 | {{ form.statut.errors }} |
181 | {% endif %} |
182 | {% if form.statut_residence.errors %} |
183 | <br /> |
184 | {{ form.statut_residence.errors }} |
185 | {% endif %} |
186 | </span> |
187 | </td> |
188 | <th>{{ form.organisme_bstg.label_tag }} :</th> |
da3ca955 |
189 | <td> |
4d25e2ba |
190 | {{ form.organisme_bstg }} |
191 | {% if form.organisme_bstg.errors %} |
192 | <br /> |
193 | {{ form.organisme_bstg.errors }} |
194 | {% endif %} |
dfc2c344 |
195 | <span class="info">{{ form.organisme_bstg.help_text }}</span> |
da3ca955 |
196 | </td> |
197 | </tr> |
198 | </tbody> |
199 | </table> |
200 | </fieldset> |
201 | |
202 | <fieldset> |
203 | <h2>Accès et ouverture des comptes</h2> |
204 | <table> |
205 | <tbody> |
206 | <tr> |
207 | <th> |
208 | {{ form.compte_compta.label_tag }} |
209 | </th> |
210 | <td> |
211 | {{ form.compte_compta }}<br /> |
212 | {{ form.compte_compta.errors }} |
213 | </td> |
da3ca955 |
214 | <th> |
215 | {{ form.compte_courriel.label_tag }} |
216 | </th> |
217 | <td> |
218 | {{ form.compte_courriel }}<br /> |
219 | {{ form.compte_courriel.errors }} |
220 | </td> |
221 | </tr> |
222 | </tbody> |
223 | </table> |
224 | </fieldset> |
d766bf2c |
225 | |
da3ca955 |
226 | </div> |