demarches-normaliennes/app/views/instructeurs/groupe_instructeurs/index.html.haml

21 lines
640 B
Text
Raw Normal View History

2019-10-24 21:52:05 +02:00
- content_for(:title, "Notifications pour #{@procedure.libelle}")
= render partial: 'new_administrateur/breadcrumbs',
locals: { steps: [link_to(@procedure.libelle, procedure_path(@procedure)),
'Groupes dinstructeurs'] }
.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