-<div>
- <h3>Recrutement</h3>
- {% comment %}
- <a class="noprint action-remove-block" href="#">Retirer de l'impression</a>
- {% endcomment %}
- <table>
- <tr><th>Local</th><td>{{ poste.local|yesno:"Oui,Non,Inconnu" }}</td></tr>
- <tr><th>Expatrié</th><td>{{ poste.expatrie|yesno:"Oui,Non,Inconnu" }}</td></tr>
- <tr><th>Mise à disposition</th><td>{{ poste.mise_a_disposition|yesno:"Oui,Non,Inconnu" }}</td></tr>
- <tr><th>Appel à candidature</th><td>{{ poste.appel }}</td></tr>
- </table>
-</div>
+<fieldset class="module aligned">
+ <h2>Recrutement</h2>
+ {% include "rh/form-row.html" with label="Local" value=poste.local|yesno:"Oui,Non,Inconnu" %}
+ {% include "rh/form-row.html" with label="Expatrié" value=poste.expatrie|yesno:"Oui,Non,Inconnu" %}
+ {% include "rh/form-row.html" with label="Mise à disposition" value=poste.mise_a_disposition|yesno:"Oui,Non,Inconnu" %}
+ {% include "rh/form-row.html" with label="Appel à candidature" value=poste.appel %}
+ {% include "rh/form-row.html" with label="Date début" value=poste.date_debut|default:"s/o" %}
+ {% include "rh/form-row.html" with label="Date fin" value=poste.date_fin|default:"s/o" %}
+</fieldset>