demarches-normaliennes/app/views/new_gestionnaire/dossiers/_champs.html.haml
Frederic Merizen 21bb04d74e [fix #1066] Fix links to related dossier for experts
- link to full dossier if gestionnaire is affected on procedure
- link to avis if avis expert requested on related dossier
2017-12-13 10:28:16 +00:00

37 lines
1.2 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

%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
- when "dossier_link"
%th.libelle
= "#{c.libelle} :"
%td.rich-text
- dossier = Dossier.includes(:procedure).find_by(id: c.value)
- if dossier
- path = dossier_linked_path(current_gestionnaire, dossier)
- if path.present?
= link_to("Dossier nº #{dossier.id}", path, target: '_blank')
- else
Dossier nº #{dossier.id}
%br
= dossier.text_summary
- else
Pas de dossier associé
- else
%th.libelle
= "#{c.libelle} :"
%td.rich-text
= sanitize(c.value)