2017-04-06 19:10:25 +02:00
|
|
|
|
#transferModal.modal.fade{ "aria-labelledby" => "TransferProcedureModal", :role => "dialog", :tabindex => "-1" }
|
|
|
|
|
.modal-dialog.modal-md{ :role => "document" }
|
2016-07-22 11:34:34 +02:00
|
|
|
|
= form_tag admin_procedure_transfer_path(procedure_id: @procedure.id), method: :post, remote: true do
|
|
|
|
|
.modal-content
|
|
|
|
|
.modal-header
|
2017-04-06 19:10:25 +02:00
|
|
|
|
%button.close{ "aria-label" => "Close", "data-dismiss" => "modal", :type => "button" }
|
|
|
|
|
%span{ "aria-hidden" => "true" } ×
|
2017-06-22 16:35:05 +02:00
|
|
|
|
|
2016-07-22 11:34:34 +02:00
|
|
|
|
%h4#myModalLabel.modal-title
|
2018-04-26 14:40:03 +02:00
|
|
|
|
Envoyer une copie de cette procédure à un autre administrateur
|
2017-06-22 16:35:05 +02:00
|
|
|
|
|
2016-07-22 11:34:34 +02:00
|
|
|
|
.modal-body
|
|
|
|
|
%p
|
2018-04-26 14:40:03 +02:00
|
|
|
|
Cette fonctionnalité vous permet de d'envoyer une copie de votre procédure à un autre administrateur.
|
2017-06-22 16:35:05 +02:00
|
|
|
|
|
2017-04-06 19:10:25 +02:00
|
|
|
|
%div{ style:'margin-top:20px' }
|
|
|
|
|
= text_field_tag :email_admin, '', { class: 'form-control',
|
2017-06-22 16:34:34 +02:00
|
|
|
|
type: 'email',
|
|
|
|
|
placeholder: 'Email administrateur cible',
|
|
|
|
|
style: 'width: 300px; margin-left:auto; margin-right:auto' }
|
2017-06-22 16:35:05 +02:00
|
|
|
|
|
2017-04-26 14:46:43 +02:00
|
|
|
|
#not_found_admin.center.text-danger{ style:'display: none; margin-top: 10px;' }
|
2016-07-22 11:34:34 +02:00
|
|
|
|
Cet administrateur n'existe pas.
|
2017-06-22 16:35:05 +02:00
|
|
|
|
|
2016-07-22 11:34:34 +02:00
|
|
|
|
.modal-footer
|
|
|
|
|
= submit_tag "Envoyer", class: 'btn btn-success'
|
|
|
|
|
= button_tag 'Annuler', class: %w(btn btn btn-default), id: 'cancel', data: { dismiss: 'modal' }
|