22 lines
819 B
Text
22 lines
819 B
Text
#modal-remove-blob.modal.hide
|
||
.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 project_blob_path(@project, @id), method: :delete, class: 'form-horizontal' do
|
||
= render 'shared/commit_message_container', params: params,
|
||
placeholder: 'Removed this file because...'
|
||
.form-group
|
||
.col-sm-2
|
||
.col-sm-10
|
||
= submit_tag 'Remove file', class: 'btn btn-remove btn-remove-file'
|
||
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
|
||
|
||
:javascript
|
||
disableButtonIfEmptyField('#commit_message', '.btn-remove-file')
|