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}"
|
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
|
|
|
|
|
2017-07-18 15:12:55 +02:00
|
|
|
|
%ul.tabs
|
2019-08-06 11:02:54 +02:00
|
|
|
|
- notifications_summary = current_instructeur.notifications_for_dossier(dossier)
|
2018-08-16 16:30:55 +02:00
|
|
|
|
|
2018-09-06 14:02:02 +02:00
|
|
|
|
= dynamic_tab_item('Demande',
|
2019-08-06 11:02:54 +02:00
|
|
|
|
instructeur_dossier_path(dossier.procedure, dossier),
|
2018-08-16 16:30:55 +02:00
|
|
|
|
notification: notifications_summary[:demande])
|
|
|
|
|
|
2018-09-06 14:02:02 +02:00
|
|
|
|
= dynamic_tab_item('Annotations privées',
|
2019-08-06 11:02:54 +02:00
|
|
|
|
annotations_privees_instructeur_dossier_path(dossier.procedure, dossier),
|
2018-08-16 16:30:55 +02:00
|
|
|
|
notification: notifications_summary[:annotations_privees])
|
|
|
|
|
|
2018-09-06 14:02:02 +02:00
|
|
|
|
= dynamic_tab_item('Avis externes',
|
2019-08-06 11:02:54 +02:00
|
|
|
|
avis_instructeur_dossier_path(dossier.procedure, dossier),
|
2018-08-16 16:30:55 +02:00
|
|
|
|
notification: notifications_summary[:avis])
|
|
|
|
|
|
2018-09-06 14:02:02 +02:00
|
|
|
|
= dynamic_tab_item('Messagerie',
|
2019-08-06 11:02:54 +02:00
|
|
|
|
messagerie_instructeur_dossier_path(dossier.procedure, dossier),
|
2018-08-16 16:30:55 +02:00
|
|
|
|
notification: notifications_summary[:messagerie])
|
|
|
|
|
|
2018-09-06 14:02:02 +02:00
|
|
|
|
= dynamic_tab_item('Personnes impliquées',
|
2019-08-06 11:02:54 +02: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)})"
|