f6503f71f9
These have been replaced by the "requiresInput" behavior.
18 lines
776 B
Text
18 lines
776 B
Text
#modal-remove-blob.modal
|
||
.modal-dialog
|
||
.modal-content
|
||
.modal-header
|
||
%a.close{href: "#", "data-dismiss" => "modal"} ×
|
||
%h3.page-title Remove #{@blob.name}
|
||
%p.light
|
||
From branch
|
||
%strong= @ref
|
||
|
||
.modal-body
|
||
= form_tag namespace_project_blob_path(@project.namespace, @project, @id), method: :delete, class: 'form-horizontal js-requires-input' do
|
||
= render 'shared/commit_message_container', params: params,
|
||
placeholder: 'Removed this file because...'
|
||
.form-group
|
||
.col-sm-offset-2.col-sm-10
|
||
= button_tag 'Remove file', class: 'btn btn-remove btn-remove-file'
|
||
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
|