2019-10-24 21:52:05 +02:00
|
|
|
|
- content_for(:title, "Notifications pour #{@procedure.libelle}")
|
|
|
|
|
|
2021-11-25 16:26:55 +01:00
|
|
|
|
= render partial: 'administrateurs/breadcrumbs',
|
2022-09-09 13:08:24 +02:00
|
|
|
|
locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)],
|
2022-08-17 13:53:07 +02:00
|
|
|
|
['Groupes d’instructeurs']] }
|
2019-10-24 21:52:05 +02:00
|
|
|
|
|
2024-02-15 15:51:03 +01:00
|
|
|
|
.fr-container.groupe-instructeur
|
2024-02-15 15:33:32 +01:00
|
|
|
|
%h1 Gestion des Groupes
|
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'
|