diff --git a/app/views/instructeurs/shared/avis/_form.html.haml b/app/views/instructeurs/avis/shared/_form.html.haml similarity index 100% rename from app/views/instructeurs/shared/avis/_form.html.haml rename to app/views/instructeurs/avis/shared/_form.html.haml diff --git a/app/views/instructeurs/shared/avis/_list.html.haml b/app/views/instructeurs/avis/shared/_list.html.haml similarity index 100% rename from app/views/instructeurs/shared/avis/_list.html.haml rename to app/views/instructeurs/avis/shared/_list.html.haml diff --git a/app/views/instructeurs/dossiers/avis.html.haml b/app/views/instructeurs/dossiers/avis.html.haml index 700152df5..c02565ff2 100644 --- a/app/views/instructeurs/dossiers/avis.html.haml +++ b/app/views/instructeurs/dossiers/avis.html.haml @@ -5,12 +5,12 @@ .container - if !@dossier.termine? - if @dossier.procedure.allow_expert_review - = render partial: "instructeurs/shared/avis/form", locals: { url: avis_instructeur_dossier_path(@dossier.procedure, @dossier), linked_dossiers: @dossier.linked_dossiers_for(current_instructeur), must_be_confidentiel: false, avis: @avis } + = render partial: "instructeurs/avis/shared/form", locals: { url: avis_instructeur_dossier_path(@dossier.procedure, @dossier), linked_dossiers: @dossier.linked_dossiers_for(current_instructeur), must_be_confidentiel: false, avis: @avis } - else %p Cette démarche n’autorise pas la demande d’avis à un expert. Veuillez contacter votre administrateur - if @dossier.avis.present? - = render partial: 'instructeurs/shared/avis/list', locals: { avis: @dossier.avis, avis_seen_at: @avis_seen_at } + = render partial: 'instructeurs/avis/shared/list', locals: { avis: @dossier.avis, avis_seen_at: @avis_seen_at } - if @dossier.termine? && !@dossier.avis.present? .blank-tab diff --git a/spec/views/instructeur/shared/avis/list.html.haml_spec.rb b/spec/views/instructeur/avis/shared/list.html.haml_spec.rb similarity index 93% rename from spec/views/instructeur/shared/avis/list.html.haml_spec.rb rename to spec/views/instructeur/avis/shared/list.html.haml_spec.rb index a92696ffa..db37921a2 100644 --- a/spec/views/instructeur/shared/avis/list.html.haml_spec.rb +++ b/spec/views/instructeur/avis/shared/list.html.haml_spec.rb @@ -1,7 +1,7 @@ -describe 'instructeurs/shared/avis/_list.html.haml', type: :view do +describe 'instructeurs/avis/shared/_list.html.haml', type: :view do before { view.extend DossierHelper } - subject { render 'instructeurs/shared/avis/list.html.haml', avis: avis, avis_seen_at: seen_at, current_instructeur: instructeur } + subject { render 'instructeurs/avis/shared/list.html.haml', avis: avis, avis_seen_at: seen_at, current_instructeur: instructeur } let(:instructeur) { create(:instructeur) } let(:instructeur2) { create(:instructeur) }