2019-10-24 21:52:05 +02:00
|
|
|
|
- content_for(:title, "Notifications pour #{@procedure.libelle}")
|
|
|
|
|
|
|
|
|
|
= render partial: 'new_administrateur/breadcrumbs',
|
2020-07-07 12:03:32 +02:00
|
|
|
|
locals: { steps: [link_to(@procedure.libelle, instructeur_procedure_path(@procedure)),
|
2019-10-24 21:52:05 +02:00
|
|
|
|
'Groupes d’instructeurs'] }
|
|
|
|
|
|
|
|
|
|
.container.groupe-instructeur
|
|
|
|
|
.card
|
|
|
|
|
.card-title Gestion des Groupes
|
|
|
|
|
%table.table.mt-2
|
|
|
|
|
%thead
|
|
|
|
|
%tr
|
|
|
|
|
%th{ colspan: 2 } Liste des groupes
|
|
|
|
|
%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
|
|
|
|
|
|
|
|
|
= paginate @groupes_instructeurs
|