demarches-normaliennes/app/views/instructeurs/dossiers/_header.html.haml

58 lines
2.5 KiB
Text
Raw Normal View History

- if @is_dossier_in_batch_operation
= render Dsfr::NoticeComponent.new(closable: false) do |c|
- c.with_title do
Un traitement de masse est en cours sur ce dossier, vous ne pouvez pas le modifier.
2022-12-06 11:17:46 +01:00
= link_to "Recharger la page", instructeur_dossier_path
pour voir si l'opération est finie.
.sub-header
2023-02-27 14:30:10 +01:00
.container.turbo-header
.flex.fr-mb-3w
%div
%h1.fr-h2.fr-mb-1w
2017-08-02 16:20:01 +02:00
= "Dossier nº #{dossier.id}"
= status_badge(dossier.state, 'super')
= link_to dossier.procedure.libelle.truncate_words(10), instructeur_procedure_path(dossier.procedure), title: dossier.procedure.libelle, class: "fr-link"
= procedure_badge(dossier.procedure)
.header-actions.fr-ml-auto
= render partial: 'instructeurs/dossiers/header_actions', locals: { dossier: dossier }
= render(partial: 'instructeurs/dossiers/print_and_export_actions', locals: {dossier: dossier})
= render(partial: 'instructeurs/dossiers/expiration_banner', locals: {dossier: dossier})
- if dossier.user_deleted?
2023-02-22 12:03:37 +01:00
%p.fr-mb-1w
%small Lusager a supprimé son compte. Vous pouvez archiver puis supprimer le dossier.
2023-02-22 12:03:37 +01:00
2023-02-27 14:30:10 +01:00
.container
2021-12-24 18:10:50 +01:00
%nav.tabs
%ul
- notifications_summary = current_instructeur.notifications_for_dossier(dossier)
2022-04-13 15:44:29 +02:00
= dynamic_tab_item(t('views.instructeurs.dossiers.tab_steps.request'),
2021-12-24 18:10:50 +01:00
instructeur_dossier_path(dossier.procedure, dossier),
notification: notifications_summary[:demande])
2022-04-13 15:44:29 +02:00
= dynamic_tab_item(t('views.instructeurs.dossiers.tab_steps.private_annotations'),
2021-12-24 18:10:50 +01:00
annotations_privees_instructeur_dossier_path(dossier.procedure, dossier),
notification: notifications_summary[:annotations_privees])
2022-04-13 15:44:29 +02:00
= dynamic_tab_item(t('views.instructeurs.dossiers.tab_steps.external_opinion'),
2021-12-24 18:10:50 +01:00
avis_instructeur_dossier_path(dossier.procedure, dossier),
notification: notifications_summary[:avis])
2022-04-13 15:44:29 +02:00
= dynamic_tab_item(t('views.instructeurs.dossiers.tab_steps.messaging'),
2021-12-24 18:10:50 +01:00
messagerie_instructeur_dossier_path(dossier.procedure, dossier),
notification: notifications_summary[:messagerie])
2022-04-13 15:44:29 +02:00
= dynamic_tab_item(t('views.instructeurs.dossiers.tab_steps.involved_persons'),
2021-12-24 18:10:50 +01:00
personnes_impliquees_instructeur_dossier_path(dossier.procedure, dossier))
.container
.print-header
= dossier.procedure.libelle.truncate_words(10)
>
2018-11-06 18:45:29 +01:00
= "Dossier nº #{dossier.id} (#{dossier_display_state(dossier, lower: true)})"