7708dbbc71
Starting from Rails 5.1, `form_with` behavior is to generate remote forms by default. However with Turbolinks disabled, the form gets sent, but nothing is set up to handle the server response (like replacing the content of the page). So we have two choices: either enable a global config option that makes `form_with` generate non-remote forms, or do it explicitely on each form. I chose the explicit way, so that developers expecting the usual remote behavior of `form_with` are not surprised.
28 lines
920 B
Text
28 lines
920 B
Text
%h1 Instructeurs disponibles
|
|
|
|
%p
|
|
Cette page vous permet de gérer la liste des instructeurs disponibles pour être affectés à une démarche.
|
|
|
|
%p{ style: 'font-style: italic' }
|
|
N.B. : cette page ne concerne que la liste des personnes disponibles. Si vous souhaitez affecter ou enlever un instructeur d'une démarche particulière,
|
|
utilisez plutôt la
|
|
= link_to "page de la démarche", admin_procedures_path
|
|
concernée.
|
|
|
|
.row
|
|
.col-xs-4
|
|
|
|
= smart_listing_render :instructeurs
|
|
.col-xs-1
|
|
|
|
.col-xs-6
|
|
%h3 Ajouter un instructeur
|
|
#procedure_new.section.section-label
|
|
= form_with url: { controller: 'admin/instructeurs', action: :create }, local: true do
|
|
.row
|
|
.col-xs-5
|
|
= render partial: 'admin/instructeurs/informations'
|
|
.col-xs-2
|
|
%br
|
|
%br
|
|
= submit_tag 'Ajouter', class: 'btn btn-info', style: 'float: left;'
|