demarches-normaliennes/app/views/experts/avis/instruction.html.haml

39 lines
1.8 KiB
Text
Raw Normal View History

2021-02-09 10:24:13 +01:00
- content_for(:title, "Avis · Dossier nº #{@dossier.id} (#{@dossier.owner_name})")
= render partial: 'header', locals: { avis: @avis, dossier: @dossier }
.container
%section.give-avis
%h1.tab-title Donner votre avis
%h2.claimant
Demandeur :
%span.email= @avis.claimant.email
2021-05-26 15:16:30 +02:00
%span.date Demande davis envoyée le #{l(@avis.created_at, format: '%d/%m/%y')}
2021-02-09 10:24:13 +01:00
%p.introduction= @avis.introduction
- if @avis.introduction_file.attached?
= render partial: 'shared/attachment/show', locals: { attachment: @avis.introduction_file.attachment }
%br/
2021-08-17 11:11:01 +02:00
= form_for @avis, url: expert_avis_path(@avis.procedure, @avis), html: { class: 'form', data: { persisted_content_id: @avis.id } } do |f|
= f.text_area :answer, rows: 3, placeholder: 'Votre avis', required: true, class: 'persisted-input'
2021-02-09 10:24:13 +01:00
= text_upload_and_render f, @avis.piece_justificative_file
.flex.justify-between.align-baseline
%p.confidentiel.flex
- if @avis.confidentiel?
%span.icon.lock
%span
2021-05-26 15:16:30 +02:00
Cet avis est confidentiel et nest pas affiché aux autres experts consultés
2021-02-09 10:24:13 +01:00
- else
%span
Cet avis est partagé avec les autres experts
.send-wrapper
= f.submit 'Envoyer votre avis', class: 'button send'
2021-02-25 10:05:19 +01:00
- if !@dossier.termine? && !@avis.procedure.feature_enabled?(:expert_not_allowed_to_invite)
= render partial: "experts/shared/avis/form", locals: { url: avis_expert_avis_path(@avis.procedure, @avis), linked_dossiers: @dossier.linked_dossiers_for(current_expert), must_be_confidentiel: @avis.confidentiel?, avis: @new_avis }
2021-02-09 10:24:13 +01:00
2021-02-25 10:05:19 +01:00
- if @dossier.avis_for_expert(current_expert).present?
= render partial: 'experts/shared/avis/list', locals: { avis: @dossier.avis_for_expert(current_expert), avis_seen_at: nil }