2018-04-23 17:22:20 +02:00
|
|
|
|
.sub-header
|
2017-07-18 15:12:55 +02:00
|
|
|
|
.container
|
2017-08-02 16:20:01 +02:00
|
|
|
|
.flex.justify-between
|
|
|
|
|
%ul.breadcrumbs
|
|
|
|
|
%li
|
2019-08-06 11:02:54 +02:00
|
|
|
|
= link_to instructeur_procedure_path(dossier.procedure), title: dossier.procedure.libelle do
|
2019-01-16 11:43:07 +01:00
|
|
|
|
- if dossier.procedure.brouillon?
|
|
|
|
|
%span.badge démarche en test
|
|
|
|
|
= dossier.procedure.libelle.truncate_words(10)
|
2017-08-02 16:20:01 +02:00
|
|
|
|
%li
|
|
|
|
|
= "Dossier nº #{dossier.id}"
|
2021-12-02 16:19:17 +01:00
|
|
|
|
|
2019-08-12 16:06:06 +02:00
|
|
|
|
.header-actions
|
2019-08-12 16:04:09 +02:00
|
|
|
|
= render partial: 'instructeurs/dossiers/header_actions', locals: { dossier: dossier }
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
2021-12-02 16:19:17 +01:00
|
|
|
|
= render(partial: 'instructeurs/dossiers/expiration_banner', locals: {dossier: dossier})
|
|
|
|
|
|
2021-12-24 18:10:50 +01:00
|
|
|
|
%nav.tabs
|
|
|
|
|
%ul
|
|
|
|
|
- notifications_summary = current_instructeur.notifications_for_dossier(dossier)
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
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])
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
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])
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
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])
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
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])
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
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))
|
2017-11-23 18:00:13 +01:00
|
|
|
|
|
|
|
|
|
.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)})"
|