18 lines
800 B
Text
18 lines
800 B
Text
= render partial: "header", locals: { dossier: @dossier }
|
|
|
|
#dossier-annotations-privees.container
|
|
- if @dossier.ordered_champs_private.present?
|
|
%section
|
|
%h1.private-annotations Annotations privées
|
|
.card.featured
|
|
= form_for @dossier, url: annotations_dossier_path(@dossier.procedure, @dossier), html: { class: 'form' } do |f|
|
|
= f.fields_for :champs_private, f.object.ordered_champs_private do |champ_form|
|
|
- champ = champ_form.object
|
|
= render partial: "new_gestionnaire/dossiers/champs/#{champ.type_champ}",
|
|
locals: { champ: champ, form: champ_form }
|
|
|
|
.send-wrapper
|
|
= f.submit 'Sauvegarder', class: 'button send', data: { disable_with: "Envoi..." }
|
|
|
|
- else
|
|
%h2.empty-text Aucune annotation privée
|