2019-10-24 21:52:05 +02:00
|
|
|
- content_for(:title, "Notifications pour #{@procedure.libelle}")
|
|
|
|
|
2024-10-31 14:28:14 +01:00
|
|
|
.sub-header
|
2024-11-04 18:54:08 +01:00
|
|
|
.fr-container.flex.column
|
|
|
|
= render partial: 'instructeurs/breadcrumbs',
|
|
|
|
locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)],
|
|
|
|
['Gestion des instructeurs']] }
|
|
|
|
|
2024-10-31 14:28:14 +01:00
|
|
|
= render partial: 'instructeurs/procedures/header',
|
|
|
|
locals: { procedure: @procedure }
|
2019-10-24 21:52:05 +02:00
|
|
|
|
2024-02-15 15:51:03 +01:00
|
|
|
.fr-container.groupe-instructeur
|
2024-11-19 00:04:21 +01:00
|
|
|
%h1.fr-h4 Gestion des instructeurs
|
2019-10-24 21:52:05 +02:00
|
|
|
.card
|
2024-02-15 15:33:32 +01:00
|
|
|
%h2.fr-h3 Liste des groupes
|
2019-10-24 21:52:05 +02:00
|
|
|
%table.table.mt-2
|
|
|
|
%tbody
|
|
|
|
- @groupes_instructeurs.each do |group|
|
|
|
|
%tr
|
|
|
|
%td= group.label
|
2019-10-24 22:17:55 +02:00
|
|
|
%td.actions= link_to "voir", instructeur_groupe_path(@procedure, group)
|
2019-10-24 21:52:05 +02:00
|
|
|
|
2023-04-21 17:19:17 +02:00
|
|
|
= paginate @groupes_instructeurs, views_prefix: 'shared'
|