2019-10-17 15:13:50 +02:00
|
|
|
|
= render partial: 'new_administrateur/breadcrumbs',
|
|
|
|
|
locals: { steps: [link_to('Démarches', admin_procedures_path),
|
|
|
|
|
link_to(@procedure.libelle, admin_procedure_path(@procedure)),
|
|
|
|
|
'Groupes d’instructeurs'] }
|
|
|
|
|
|
|
|
|
|
.container.groupe-instructeur
|
2019-10-17 10:57:58 +02:00
|
|
|
|
.card
|
|
|
|
|
= form_for @procedure,
|
|
|
|
|
url: { action: :update_routing_criteria_name },
|
|
|
|
|
html: { class: 'form' } do |f|
|
|
|
|
|
|
|
|
|
|
= f.label :routing_criteria_name do
|
|
|
|
|
Libellé du routage
|
|
|
|
|
%span.notice Ce texte apparaitra sur le formulaire usager comme le libellé d'une liste
|
2019-11-13 19:41:30 +01:00
|
|
|
|
= f.text_field :routing_criteria_name, placeholder: 'ex. Votre ville', required: true
|
2019-10-17 10:57:58 +02:00
|
|
|
|
= f.submit 'Renommer', class: 'button primary send'
|
|
|
|
|
|
2019-10-17 15:13:50 +02:00
|
|
|
|
.card
|
|
|
|
|
.card-title Gestion des Groupes
|
|
|
|
|
|
2019-10-23 20:51:25 +02:00
|
|
|
|
= form_for :groupe_instructeur, html: { class: 'form' } do |f|
|
|
|
|
|
= f.label :label do
|
|
|
|
|
Ajouter un groupe
|
|
|
|
|
%span.notice Ce groupe sera un choix de la liste « #{@procedure.routing_criteria_name} » .
|
2019-11-13 19:41:30 +01:00
|
|
|
|
= f.text_field :label, placeholder: 'ex. Ville de Bordeaux', required: true
|
2019-10-23 20:51:25 +02:00
|
|
|
|
= f.submit 'Ajouter le groupe', class: 'button primary send'
|
|
|
|
|
|
2019-10-17 15:13:50 +02:00
|
|
|
|
%table.table.mt-2
|
|
|
|
|
%thead
|
|
|
|
|
%tr
|
2019-11-13 18:48:53 +01:00
|
|
|
|
%th{ colspan: 2 }= t(".existing_groupe", count: @groupes_instructeurs.count)
|
2019-10-17 15:13:50 +02:00
|
|
|
|
%tbody
|
|
|
|
|
- @groupes_instructeurs.each do |group|
|
|
|
|
|
%tr
|
|
|
|
|
%td= group.label
|
2019-10-23 20:22:56 +02:00
|
|
|
|
%td.actions= link_to "voir", procedure_groupe_instructeur_path(@procedure, group)
|
2019-10-17 15:13:50 +02:00
|
|
|
|
|
|
|
|
|
= paginate @groupes_instructeurs
|