2021-09-23 15:03:20 +02:00
|
|
|
.procedure-header
|
2022-11-29 09:42:11 +01:00
|
|
|
.flex.clipboard-container
|
2023-06-29 15:03:22 +02:00
|
|
|
%h1.fr-h3
|
2022-11-29 09:42:11 +01:00
|
|
|
= "#{procedure_libelle procedure} - n°#{procedure.id}"
|
2023-06-12 12:05:48 +02:00
|
|
|
= render Dsfr::CopyButtonComponent.new(title: t('instructeurs.procedures.index.copy_link_button'), text: commencer_url(procedure.path))
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.notification_management'), email_notifications_instructeur_procedure_path(procedure), class: 'header-link'
|
2021-09-23 15:03:20 +02:00
|
|
|
|
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.statistics'), stats_instructeur_procedure_path(procedure), class: 'header-link'
|
2021-09-23 15:03:20 +02:00
|
|
|
|
2023-06-26 18:05:01 +02:00
|
|
|
- if procedure.instructeurs_self_management?
|
2021-09-23 15:03:20 +02:00
|
|
|
|
|
|
|
|
- if can_manage_groupe_instructeurs?(procedure)
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.instructeurs'), admin_procedure_groupe_instructeurs_path(procedure), class: 'header-link'
|
2022-11-04 10:10:57 +01:00
|
|
|
- elsif procedure.routing_enabled?
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.instructeurs'), instructeur_groupes_path(procedure), class: 'header-link'
|
2021-09-23 15:03:20 +02:00
|
|
|
- else
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.instructeurs'), instructeur_groupe_path(procedure, procedure.defaut_groupe_instructeur), class: 'header-link'
|
2021-09-23 15:03:20 +02:00
|
|
|
|
|
|
|
- if can_send_groupe_message?(procedure)
|
|
|
|
|
|
2022-04-13 15:44:29 +02:00
|
|
|
= link_to t('instructeurs.dossiers.header.banner.contact_users'), email_usagers_instructeur_procedure_path(procedure), class: 'header-link'
|
2022-11-29 09:42:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
= link_to t('instructeurs.dossiers.header.banner.administrators_list'), administrateurs_instructeur_procedure_path(procedure), class: 'header-link'
|
2023-09-11 16:36:55 +02:00
|
|
|
|
|
|
|
|
= link_to t('instructeurs.dossiers.header.banner.exports_list'), exports_instructeur_procedure_path(procedure), class: 'header-link'
|
2023-09-18 12:43:14 +02:00
|
|
|
- if @has_export_notification
|
|
|
|
%span.notifications{ 'aria-label': t('instructeurs.dossiers.header.banner.exports_notification_label') }
|
2023-12-13 10:26:33 +01:00
|
|
|
|
|
|
|
#last-export-alert
|
2023-12-19 14:32:34 +01:00
|
|
|
= render partial: "last_export_alert", locals: { export: @last_export, statut: @statut }
|