-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restructure to do it properly with a table
- Loading branch information
laurinehu
committed
Jun 25, 2024
1 parent
ec366d7
commit 1bca7b8
Showing
5 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% macro translate_motif(field) -%} | ||
case {{ field }} | ||
when 'other' then 'Autre motif saisi sur les emplois de l''inclusion' | ||
when 'hired_elsewhere' then 'Candidat indisponible (en emploi)' | ||
when 'training' then 'Candidat indisponible (en formation)' | ||
when 'unavailable' then 'Candidat indisponible ou non intéressé par le poste' | ||
when 'did_not_come_to_interview' then 'Candidat ne s’étant pas présenté à l’entretien' | ||
when 'non_eligible' then 'Candidat non éligible' | ||
when 'not_interested' then 'Candidat non intéressé' | ||
when 'did_not_come' then 'Candidat non joignable' | ||
when 'not_mobile' then 'Candidat non mobile' | ||
when 'duplicate' then 'Candidature en doublon' | ||
when 'poorly_informed' then 'Candidature pas assez renseignée' | ||
when 'eligibility_doubt' then 'Doute sur l''éligibilité du candidat' | ||
when 'prevent_objectives' then 'Embauche incompatible avec les objectifs du dialogue de gestion' | ||
when 'approval_expiration_too_close' then 'La date de fin du pass est trop proche' | ||
when 'deactivation' then 'La structure n''est plus conventionnée' | ||
when 'lacking_skills' then 'Compétences insuffisantes pour le poste' | ||
when 'no_position' then 'Pas de recrutement en cours' | ||
when 'incompatible' then 'Freins à l''emploi incompatible avec le poste proposé' | ||
else {{ field }} | ||
end | ||
{%- endmacro -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
select | ||
code, | ||
libelle, | ||
{{ translate_motif('code') }} | ||
from | ||
c1_ref_motif_de_refus |
This file was deleted.
Oops, something went wrong.