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
|
2018-11-22 00:22:55 +01: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
|
|
|
|
|
2018-02-21 15:19:04 +01:00
|
|
|
|
= form_for @avis, url: gestionnaire_avis_path(@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
|
2019-05-29 12:05:28 +02:00
|
|
|
|
= render partial: "shared/attachment/update", locals: { attachment: @avis.piece_justificative_file.attachment, user_can_destroy: true, form: f }
|
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
|
|
|
|
|
Cet avis est confidentiel et n'est pas affiché aux autres experts consultés
|
|
|
|
|
- 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
|
|
|
|
|
2018-10-04 15:51:27 +02:00
|
|
|
|
- if !@dossier.termine?
|
2019-03-25 16:54:46 +01:00
|
|
|
|
= render partial: "gestionnaires/shared/avis/form", locals: { url: avis_gestionnaire_avis_path(@avis), must_be_confidentiel: @avis.confidentiel?, avis: @new_avis }
|
2017-09-06 16:14:03 +02:00
|
|
|
|
|
2018-10-04 15:50:21 +02:00
|
|
|
|
- if @dossier.avis_for(current_gestionnaire).present?
|
2019-03-25 16:54:46 +01:00
|
|
|
|
= render partial: 'gestionnaires/shared/avis/list', locals: { avis: @dossier.avis_for(current_gestionnaire), avis_seen_at: nil }
|