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

24 lines
798 B
Text
Raw Normal View History

2019-10-24 21:52:05 +02:00
- content_for(:title, "Notifications pour #{@procedure.libelle}")
.sub-header
.fr-container.flex.column
= render partial: 'instructeurs/breadcrumbs',
locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)],
['Gestion des instructeurs']] }
= render partial: 'instructeurs/procedures/header',
locals: { procedure: @procedure }
2019-10-24 21:52:05 +02: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
%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
= paginate @groupes_instructeurs, views_prefix: 'shared'