Add dossier champs (minimalist version)
This commit is contained in:
parent
f9f313e990
commit
47857664eb
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue