14 lines
650 B
Text
14 lines
650 B
Text
.container.dossier-edit
|
|
- if dossier.champs_private.present?
|
|
%section
|
|
= form_for dossier, url: annotations_instructeur_dossier_path(dossier.procedure, dossier), html: { class: 'form', multipart: true } do |f|
|
|
- dossier.champs_private.each do |champ|
|
|
= fields_for champ.input_name, champ do |form|
|
|
= render EditableChamp::EditableChampComponent.new form: form, champ: champ, seen_at: seen_at
|
|
|
|
- if !dossier.for_procedure_preview?
|
|
.send-wrapper
|
|
= f.submit 'Sauvegarder', class: 'button primary send', data: { disable: true }
|
|
|
|
- else
|
|
%h2.empty-text Aucune annotation privée
|