2021-09-15 10:37:19 +02:00
|
|
|
|
- if @procedure.routee?
|
|
|
|
|
- content_for(:title, "Instructeurs du groupe #{@groupe_instructeur.label}")
|
2019-10-24 22:17:55 +02:00
|
|
|
|
|
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', instructeur_groupes_path(@procedure)],
|
|
|
|
|
[@groupe_instructeur.label]] }
|
2021-09-15 10:37:19 +02:00
|
|
|
|
|
|
|
|
|
- else
|
|
|
|
|
- content_for(:title, "Instructeurs de la démarche #{@procedure.libelle}")
|
|
|
|
|
|
2021-11-25 16:26:55 +01:00
|
|
|
|
= render partial: 'administrateurs/breadcrumbs',
|
2021-09-15 10:37:19 +02:00
|
|
|
|
locals: { steps: [link_to(@procedure.libelle, instructeur_procedure_path(@procedure)), 'Instructeurs'] }
|
2019-10-24 22:17:55 +02:00
|
|
|
|
|
|
|
|
|
.container.groupe-instructeur
|
2021-09-15 10:37:19 +02:00
|
|
|
|
%h1
|
|
|
|
|
- if @procedure.routee?
|
|
|
|
|
Groupe « #{@groupe_instructeur.label} »
|
|
|
|
|
- else
|
|
|
|
|
Démarche « #{@procedure.libelle} »
|
2019-10-24 22:17:55 +02:00
|
|
|
|
|
|
|
|
|
.card.mt-2
|
|
|
|
|
.card-title Gestion des instructeurs
|
2019-10-25 09:26:31 +02:00
|
|
|
|
= form_for :instructeur,
|
|
|
|
|
url: { action: :add_instructeur },
|
|
|
|
|
html: { class: 'form' } do |f|
|
|
|
|
|
|
|
|
|
|
= f.label :email do
|
|
|
|
|
Affecter un nouvel instructeur
|
|
|
|
|
= f.email_field :email, placeholder: 'marie.dupont@exemple.fr', required: true
|
|
|
|
|
= f.submit 'Affecter', class: 'button primary send'
|
2019-10-24 22:17:55 +02:00
|
|
|
|
|
|
|
|
|
%table.table.mt-2
|
|
|
|
|
%thead
|
|
|
|
|
%tr
|
|
|
|
|
%th{ colspan: 2 } Instructeurs affectés
|
|
|
|
|
%tbody
|
|
|
|
|
- @instructeurs.each do |instructeur|
|
|
|
|
|
%tr
|
|
|
|
|
%td= instructeur.email
|
2021-09-15 10:37:19 +02:00
|
|
|
|
- confirmation_message = @procedure.routee? ? "Êtes-vous sûr de vouloir retirer l’instructeur « #{instructeur.email} » du groupe « #{@groupe_instructeur.label} » ?" : "Êtes-vous sûr de vouloir retirer l’instructeur « #{instructeur.email} » de la démarche ?"
|
2019-10-25 10:17:39 +02:00
|
|
|
|
%td.actions= button_to 'retirer',
|
|
|
|
|
{ action: :remove_instructeur },
|
|
|
|
|
{ method: :delete,
|
2021-09-15 10:37:19 +02:00
|
|
|
|
data: { confirm: confirmation_message },
|
2019-10-25 10:17:39 +02:00
|
|
|
|
params: { instructeur: { id: instructeur.id }},
|
|
|
|
|
class: 'button' }
|
|
|
|
|
|
|
|
|
|
= paginate @instructeurs
|