22 lines
651 B
Text
22 lines
651 B
Text
%table.table.vertical.dossier-champs
|
||
%tbody
|
||
- champs.reject { |c| c.type_champ == "explication" }.each do |c|
|
||
%tr
|
||
- case c.type_champ
|
||
- when "header_section"
|
||
%th.header-section{ colspan: 2 }
|
||
= c.libelle
|
||
- when "multiple_drop_down_list"
|
||
%th.libelle
|
||
= "#{c.libelle} :"
|
||
%td.rich-text
|
||
- if c.value.present?
|
||
%ul
|
||
- c.value.split(", ").each do |item|
|
||
%li
|
||
= item
|
||
- else
|
||
%th.libelle
|
||
= "#{c.libelle} :"
|
||
%td.rich-text
|
||
= sanitize(c.value)
|