demarches-normaliennes/app/views/shared/champs/pole_emploi/_identite.html.haml

13 lines
573 B
Text
Raw Normal View History

%table.pole-emploi
%caption #{t("api_particulier.providers.pole_emploi.scopes.#{scope}.libelle")} :
- identite.slice('identifiant', 'civilite', 'nom', 'nomUsage', 'prenom', 'sexe', 'dateNaissance').keys.each do |key|
%tr
%th= t("api_particulier.providers.pole_emploi.scopes.#{scope}.#{key}")
- case key
- when 'dateNaissance'
%td= try_format_date(Date.strptime(identite[key], "%Y-%m-%d"))
- when 'sexe'
%td= t("api_particulier.providers.pole_emploi.scopes.#{scope}.#{identite[key]}")
- else
%td= identite[key]