diff --git a/app/views/new_gestionnaire/dossiers/show.html.haml b/app/views/new_gestionnaire/dossiers/show.html.haml index fd77534c8..630dd975e 100644 --- a/app/views/new_gestionnaire/dossiers/show.html.haml +++ b/app/views/new_gestionnaire/dossiers/show.html.haml @@ -3,3 +3,15 @@ .card-title Identité du demandeur - if @dossier.entreprise.present? = render partial: "identite_entreprise", locals: { entreprise: @dossier.entreprise } + + .card.featured + .card-title Construction du dossier + - if @dossier.champs.present? && @dossier.champs.any? + %table.table + %tbody + - @dossier.champs.each do |c| + %tr + %th + = "#{c.libelle} :" + %td + = c.value