2017-11-17 23:40:51 +01:00
|
|
|
|
- content_for(:title, "Avis · Dossier nº #{@dossier.id} (#{@dossier.owner_name})")
|
|
|
|
|
|
2017-12-15 11:26:57 +01:00
|
|
|
|
= render partial: 'header', locals: { avis: @avis, dossier: @dossier }
|
2017-09-06 16:14:03 +02:00
|
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
%section.give-avis
|
2017-12-12 16:53:19 +01:00
|
|
|
|
%h1.tab-title Donner votre avis
|
2017-09-20 10:52:48 +02:00
|
|
|
|
%h2.claimant
|
2017-09-20 10:51:06 +02:00
|
|
|
|
Demandeur :
|
|
|
|
|
%span.email= @avis.claimant.email
|
2021-05-26 15:16:30 +02:00
|
|
|
|
%span.date Demande d’avis envoyée le #{l(@avis.created_at, format: '%d/%m/%y')}
|
2017-09-20 10:52:48 +02:00
|
|
|
|
%p.introduction= @avis.introduction
|
2017-09-06 16:14:03 +02:00
|
|
|
|
|
2020-03-03 12:52:35 +01:00
|
|
|
|
- if @avis.introduction_file.attached?
|
|
|
|
|
= render partial: 'shared/attachment/show', locals: { attachment: @avis.introduction_file.attachment }
|
|
|
|
|
%br/
|
|
|
|
|
|
2020-05-20 16:32:06 +02:00
|
|
|
|
= form_for @avis, url: instructeur_avis_path(@avis.procedure, @avis), html: { class: 'form' } do |f|
|
2017-09-06 16:14:03 +02:00
|
|
|
|
= f.text_area :answer, rows: 3, placeholder: 'Votre avis', required: true
|
2020-07-29 12:15:58 +02:00
|
|
|
|
= text_upload_and_render f, @avis.piece_justificative_file
|
2019-03-01 17:16:56 +01:00
|
|
|
|
|
2017-09-20 10:52:48 +02:00
|
|
|
|
.flex.justify-between.align-baseline
|
2017-12-18 17:20:43 +01:00
|
|
|
|
%p.confidentiel.flex
|
2018-11-22 18:28:08 +01:00
|
|
|
|
- if @avis.confidentiel?
|
|
|
|
|
%span.icon.lock
|
|
|
|
|
%span
|
2021-05-26 15:16:30 +02:00
|
|
|
|
Cet avis est confidentiel et n’est pas affiché aux autres experts consultés
|
2018-11-22 18:28:08 +01:00
|
|
|
|
- else
|
|
|
|
|
%span
|
|
|
|
|
Cet avis est partagé avec les autres experts
|
2017-09-20 10:52:48 +02:00
|
|
|
|
.send-wrapper
|
|
|
|
|
= f.submit 'Envoyer votre avis', class: 'button send'
|
2017-09-06 16:14:03 +02:00
|
|
|
|
|
2021-03-03 18:20:34 +01:00
|
|
|
|
- if !@dossier.termine? && !@avis.procedure.feature_enabled?(:expert_not_allowed_to_invite)
|
2020-05-20 16:32:06 +02:00
|
|
|
|
= render partial: "instructeurs/shared/avis/form", locals: { url: avis_instructeur_avis_path(@avis.procedure, @avis), linked_dossiers: @dossier.linked_dossiers_for(current_instructeur), must_be_confidentiel: @avis.confidentiel?, avis: @new_avis }
|
2017-09-06 16:14:03 +02:00
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
- if @dossier.avis_for(current_instructeur).present?
|
|
|
|
|
= render partial: 'instructeurs/shared/avis/list', locals: { avis: @dossier.avis_for(current_instructeur), avis_seen_at: nil }
|