| 1 | <fieldset> |
| 2 | <h2>Classement et salaire de base</h2> |
| 3 | <table> |
| 4 | <tbody> |
| 5 | <tr> |
| 6 | <td colspan="7"> |
| 7 | <h3>Ancien dossier <span class="info">(le cas échéant)</span></h3> |
| 8 | </td> |
| 9 | </tr> |
| 10 | <tr> |
| 11 | <td colspan="7"> |
| 12 | {{ employe }} <span class="info">{{ employe.dossier_set.all.reverse }}</span> |
| 13 | </td> |
| 14 | </tr> |
| 15 | <tr> |
| 16 | <th>{{ form.classement_anterieur.label_tag }}</th> |
| 17 | <th>{{ form.salaire_anterieur.label_tag }}</th> |
| 18 | <th>{{ form.statut_anterieur.label_tag }}</th> |
| 19 | <th>{{ form.type_contrat.label_tag }}</th> |
| 20 | <th colpsan="3"></th> |
| 21 | </tr> |
| 22 | <tr> |
| 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> |
| 28 | </tr> |
| 29 | <tr> |
| 30 | <td colspan="7"> |
| 31 | <h3>Précédent 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>Contrat</h2> |
| 112 | <table> |
| 113 | <tbody> |
| 114 | <tr> |
| 115 | <th>{{ form.type_contrat.label_tag }} :</th> |
| 116 | <td colspan="4"> |
| 117 | {{ form.type_contrat }}<br /> |
| 118 | {{ form.type_contrat.errors }} |
| 119 | </td> |
| 120 | <th>{{ form.remplacement.label_tag }} :</th> |
| 121 | <td> |
| 122 | {{ form.remplacement }}<br /> |
| 123 | {{ form.remplacement.errors }} |
| 124 | </td> |
| 125 | </tr> |
| 126 | <tr> |
| 127 | <th rowspan="2">Durée :</th> |
| 128 | <td>du</td> |
| 129 | <td> |
| 130 | {{ form.contrat_date_debut }}<br /> |
| 131 | <span class="info">({{form.contrat_date_debut.help_text }})</span><br /> |
| 132 | {{ form.contrat_date_debut.errors }} |
| 133 | </td> |
| 134 | <td> au </td> |
| 135 | <td> |
| 136 | {{ form.contrat_date_fin }}<br /> |
| 137 | <span class="info">({{form.contrat_date_fin.help_text }})</span><br /> |
| 138 | {{ form.contrat_date_fin.errors }} |
| 139 | </td> |
| 140 | <th>{{ form.regime_travail.label_tag }} :<br />{{ form.regime_travail.errors }}</th> |
| 141 | <td> |
| 142 | {{ form.regime_travail }} |
| 143 | <span class="info">{{ form.regime_travail.help_text }}</span> |
| 144 | </td> |
| 145 | </tr> |
| 146 | <tr> |
| 147 | <td colspan="4" class="info"> |
| 148 | <p id="note-duree">Pour une durée indéterminée, spécifier uniquement la date de début.</p> |
| 149 | </td> |
| 150 | <th> |
| 151 | {{ form.regime_travail_nb_heure_semaine.label_tag }} :<br /> |
| 152 | {{ form.regime_travail_nb_heure_semaine.errors }} |
| 153 | </th> |
| 154 | <td>{{ form.regime_travail_nb_heure_semaine }}</td> |
| 155 | </tr> |
| 156 | <tr> |
| 157 | <th>Statut : </th> |
| 158 | <td colspan="4"> |
| 159 | {{ form.statut }} |
| 160 | <span class="row"> |
| 161 | {{ form.statut_residence }} |
| 162 | {% if form.statut.errors %} |
| 163 | <br /> |
| 164 | {{ form.statut.errors }} |
| 165 | {% endif %} |
| 166 | {% if form.statut_residence.errors %} |
| 167 | <br /> |
| 168 | {{ form.statut_residence.errors }} |
| 169 | {% endif %} |
| 170 | </span> |
| 171 | </td> |
| 172 | <th>{{ form.organisme_bstg.label_tag }} :</th> |
| 173 | <td> |
| 174 | {{ form.organisme_bstg }} |
| 175 | {% if form.organisme_bstg.errors %} |
| 176 | <br /> |
| 177 | {{ form.organisme_bstg.errors }} |
| 178 | {% endif %} |
| 179 | <span class="info">{{ form.organisme_bstg.help_text }}</span><br/><br/> |
| 180 | {{ form.organisme_bstg_autre }} |
| 181 | <span class="info">{{ form.organisme_bstg_autre.help_text }}</span> |
| 182 | </td> |
| 183 | </tr> |
| 184 | </tbody> |
| 185 | </table> |
| 186 | </fieldset> |
| 187 | |
| 188 | <fieldset> |
| 189 | <h2>Accès et ouverture des comptes</h2> |
| 190 | <table> |
| 191 | <tbody> |
| 192 | <tr> |
| 193 | <th> |
| 194 | {{ form.compte_compta.label_tag }} |
| 195 | </th> |
| 196 | <td> |
| 197 | {{ form.compte_compta }}<br /> |
| 198 | {{ form.compte_compta.errors }} |
| 199 | </td> |
| 200 | <th> |
| 201 | {{ form.compte_courriel.label_tag }} |
| 202 | </th> |
| 203 | <td> |
| 204 | {{ form.compte_courriel }}<br /> |
| 205 | {{ form.compte_courriel.errors }} |
| 206 | </td> |
| 207 | </tr> |
| 208 | </tbody> |
| 209 | </table> |
| 210 | </fieldset> |
| 211 | |