1 <fieldset class=
"module aligned">
2 <h2>Identification
</h2>
3 {% include
"rh/form-row.html" with
label=
"Nom" value=poste.nom %}
4 {% include
"rh/form-row.html" with
label=
"Implantation" value=poste.implantation %}
5 {% include
"rh/form-row.html" with
label=
"Type" value=poste.type_poste %}
6 {% include
"rh/form-row.html" with
label=
"Service" value=poste.service %}
7 {% include
"rh/form-row.html" with
label=
"Responsable" value=poste.responsable %}
10 <fieldset class=
"module aligned">
12 {% include
"rh/form-row.html" with
label=
"Régime de travail (% du temps complet)" value=poste.regime_travail %}
13 {% include
"rh/form-row.html" with
label=
"Régime de travail (Nb. heures par semaine)" value=poste.regime_travail_nb_heure_semaine %}
16 <fieldset class=
"module aligned">
18 {% include
"rh/form-row.html" with
label=
"Local" value=poste.local|yesno:
"Oui,Non,Inconnu" %}
19 {% include
"rh/form-row.html" with
label=
"Expatrié" value=poste.expatrie|yesno:
"Oui,Non,Inconnu" %}
20 {% include
"rh/form-row.html" with
label=
"Mise à disposition" value=poste.mise_a_disposition|yesno:
"Oui,Non,Inconnu" %}
21 {% include
"rh/form-row.html" with
label=
"Appel à candidature" value=poste.appel %}
22 {% include
"rh/form-row.html" with
label=
"Date début" value=poste.date_debut|default:
"s/o" %}
23 {% include
"rh/form-row.html" with
label=
"Date fin" value=poste.date_fin|default:
"s/o" %}
26 <fieldset class=
"module aligned">
28 <table id=
"classement">
39 <td>{{ poste.classement_min|default:
"s/o" }}
</td>
40 <td>{{ poste.classement_max|default:
"s/o" }}
</td>
43 <th>Valeur du point
</th>
44 <td class=
"montant">{{ poste.valeur_point_min|default:
"" }}
</td>
45 <td class=
"montant">{{ poste.valeur_point_max|default:
"" }}
</td>
48 <th>Salaire de base
</th>
49 <td class=
"montant">{{ poste.salaire_min|default:
"0"|floatformat:
0 }} {{ poste.devise_min.code }}
</td>
50 <td class=
"montant">{{ poste.salaire_max|default:
"0"|floatformat:
0 }} {{ poste.devise_max.code }}
</td>
54 <td class=
"montant">{{ poste.indemn_min|default:
"0"|floatformat:
0 }} {{ poste.devise_min.code }}
</td>
55 <td class=
"montant">{{ poste.indemn_max|default:
"0"|floatformat:
0 }} {{ poste.devise_max.code }}
</td>
59 <td class=
"montant">{{ poste.autre_min|default:
"0"|floatformat:
0 }} {{ poste.devise_min.code }}
</td>
60 <td class=
"montant">{{ poste.autre_max|default:
"0"|floatformat:
0 }} {{ poste.devise_max.code }}
</td>
66 <fieldset class=
"module aligned">
69 <h4>Device comparative : {{ poste.devise_comparaison }}
</h4>
70 <table id=
"classement">
81 <td class=
"montant">{{ poste.comp_locale_min|default:
"0" }}
</td>
82 <td class=
"montant">{{ poste.comp_locale_max|default:
"0" }}
</td>
85 <th>Comp. université
</th>
86 <td class=
"montant">{{ poste.comp_universite_min|default:
"0" }}
</td>
87 <td class=
"montant">{{ poste.comp_universite_max|default:
"0" }}
</td>
90 <th>Comp. fonction pub.
</th>
91 <td class=
"montant">{{ poste.comp_fonctionpub_min|default:
"0" }}
</td>
92 <td class=
"montant">{{ poste.comp_fonctionpub_max|default:
"0" }}
</td>
96 <td class=
"montant">{{ poste.comp_ong_min|default:
"0" }}
</td>
97 <td class=
"montant">{{ poste.comp_ong_max|default:
"0" }}
</td>
101 <td class=
"montant">{{ poste.comp_autre_min|default:
"0" }}
</td>
102 <td class=
"montant">{{ poste.comp_autre_max|default:
"0" }}
</td>
106 <td class=
"montant">{{ poste.valeur_valeur_min|default:
"0" }}
</td>
107 <td class=
"montant">{{ poste.valeur_valeur_max|default:
"0" }}
</td>
113 {% if poste.justification %}
114 <fieldset class=
"module aligned">
115 <h2>Justification
</h2>
117 {{ poste.justification }}
122 {% if financements|length
> 0 %}
123 <fieldset class=
"module aligned">
134 {% for f in financements %}
136 <td>{{ f.choix }}
</td>
137 <td>{{ f.pourcentage|floatformat:
"2" }}%
</td>
138 <td>{{ f.commentaire }}
</td>
146 {% include
"rh/include/pieces.html" %}
149 <fieldset class=
"module aligned">
161 {% for d in dossiers %}
163 <td><a href=
"{% url dossier_apercu d.id %}">{{ d.id }}
</a></td>
164 <td>{{ d.date_debut }}
</td>
165 <td>{{ d.date_fin|default:
"indéterminée" }}
</td>
166 <td>{{ d.employe }}
</td>
174 {% if comparaisons %}
176 <h3>Dossiers de comparaison
</h3>
178 <a class=
"noprint action-remove-block" href=
"#">Retirer de l'impression
</a>
183 <th>Implantation
</th>
190 {% for p in comparaisons %}
192 <td>{{ p.implantation }}
</td>
194 <td>{{ p.montant|floatformat:
2 }}
</td>
195 <td>{{ p.devise|default:
"s/o" }}
</td>
203 {% include
"rh/include/commentaires.html" %}