2021-01-14 17:30:55 +01:00
|
|
|
|
- if champ.data.blank?
|
|
|
|
|
= champ.to_s
|
|
|
|
|
- else
|
|
|
|
|
%table.table.vertical.dossier-champs
|
|
|
|
|
%tbody
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Nom de l’établissement :
|
|
|
|
|
%td= champ.data['nom_etablissement']
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle L’identifiant de l’etablissement :
|
|
|
|
|
%td= champ.data['identifiant_de_l_etablissement']
|
2021-01-27 15:25:58 +01:00
|
|
|
|
- if champ.data['siren_siret'].present?
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle SIREN/SIRET :
|
|
|
|
|
%td= champ.data['siren_siret']
|
2021-01-14 17:30:55 +01:00
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Commune :
|
|
|
|
|
%td= "#{champ.data['nom_commune']} (#{champ.data['code_commune']})"
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Academie :
|
|
|
|
|
%td= "#{champ.data['libelle_academie']} (#{champ.data['code_academie']})"
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Nature de l’établissement :
|
|
|
|
|
%td= "#{champ.data['libelle_nature']} (#{champ.data['code_nature']})"
|
|
|
|
|
- if champ.data['type_contrat_prive'] != 'SANS OBJET'
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Type de contrat privé :
|
|
|
|
|
%td= champ.data['type_contrat_prive']
|
2021-01-26 13:30:16 +01:00
|
|
|
|
|
|
|
|
|
- if champ.data['nombre_d_eleves'].present?
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Nombre d’élèves :
|
|
|
|
|
%td= champ.data['nombre_d_eleves']
|
2021-01-14 17:30:55 +01:00
|
|
|
|
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Adresse :
|
|
|
|
|
%td
|
2022-12-07 09:46:45 +01:00
|
|
|
|
- if champ.data['adresse_1'].present?
|
|
|
|
|
= champ.data['adresse_1']
|
2021-01-14 17:30:55 +01:00
|
|
|
|
%br
|
|
|
|
|
= "#{champ.data['code_postal']} #{champ.data['nom_commune']}"
|
|
|
|
|
%br
|
|
|
|
|
= "#{champ.data['libelle_region']} (#{champ.data['code_region']})"
|
|
|
|
|
|
|
|
|
|
- if champ.data['telephone'].present?
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Téléphone :
|
|
|
|
|
%td= champ.data['telephone']
|
|
|
|
|
|
|
|
|
|
- if champ.data['mail'].present?
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Email :
|
|
|
|
|
%td= champ.data['mail']
|
|
|
|
|
|
|
|
|
|
- if champ.data['web'].present?
|
|
|
|
|
%tr
|
|
|
|
|
%th.libelle Site internet :
|
|
|
|
|
%td= champ.data['web']
|