2017-04-12 11:12:05 +02:00
|
|
|
|
#upload-pj-modal.modal.fade{ "aria-labelledby" => "myModalLabel", :role => "dialog", :tabindex => "-1" }
|
2017-04-06 19:10:25 +02:00
|
|
|
|
.modal-dialog{ :role => "document" }
|
2016-03-22 17:36:36 +01:00
|
|
|
|
.modal-content
|
|
|
|
|
- @dossier = @facade.dossier
|
2017-04-06 19:10:25 +02:00
|
|
|
|
= form_tag(url_for({ controller: '/users/description', action: :pieces_justificatives, dossier_id: @dossier.id }), class: 'form-inline', method: 'PATCH', multipart: true) do
|
2016-03-22 17:36:36 +01:00
|
|
|
|
|
|
|
|
|
.modal-header
|
2017-04-06 19:10:25 +02:00
|
|
|
|
%button.close{ "aria-label" => "Close", "data-dismiss" => "modal", :type => "button" }
|
|
|
|
|
%span{ "aria-hidden" => "true" } ×
|
2016-03-22 17:36:36 +01:00
|
|
|
|
%h4.modal-title
|
|
|
|
|
Modification des documents
|
|
|
|
|
|
|
|
|
|
.modal-body
|
2017-01-31 17:58:44 +01:00
|
|
|
|
= render partial: 'users/description/pieces_justificatives', locals: { dossier: @dossier }
|
2016-03-22 17:36:36 +01:00
|
|
|
|
|
|
|
|
|
.modal-footer
|
2017-04-06 19:10:25 +02:00
|
|
|
|
= submit_tag 'Modification terminée', class: %w(btn btn btn-info), id: 'modification_terminee', data: { disable_with: 'Modification terminée', submit: true }
|