2016-02-19 14:20:18 +01:00
|
|
|
%h1 Gestion des accompagnateurs
|
2016-02-05 17:40:58 +01:00
|
|
|
%br
|
|
|
|
|
|
|
|
.row
|
2017-02-14 17:08:14 +01:00
|
|
|
.col-xs-4
|
2016-02-05 17:40:58 +01:00
|
|
|
= smart_listing_render :gestionnaires
|
2017-02-14 17:08:14 +01:00
|
|
|
.col-xs-1
|
2016-02-05 17:40:58 +01:00
|
|
|
|
2017-02-14 17:08:14 +01:00
|
|
|
.col-xs-6
|
2016-03-16 10:55:03 +01:00
|
|
|
%h3 Ajouter un accompagnateur
|
2016-02-05 17:40:58 +01:00
|
|
|
#procedure_new.section.section-label
|
2017-04-06 19:10:25 +02:00
|
|
|
= form_for @gestionnaire, url: { controller: 'admin/gestionnaires', action: :create } do |f|
|
2016-02-05 17:40:58 +01:00
|
|
|
.row
|
2017-02-14 17:08:14 +01:00
|
|
|
.col-xs-5
|
2017-04-06 19:10:25 +02:00
|
|
|
= render partial: 'informations', locals: { f: f }
|
2017-02-14 17:08:14 +01:00
|
|
|
.col-xs-2
|
2016-02-05 17:40:58 +01:00
|
|
|
%br
|
|
|
|
%br
|
2017-04-06 19:58:11 +02:00
|
|
|
= f.submit 'Valider', class: 'btn btn-info', style: 'float: left;'
|