summaryrefslogtreecommitdiff
path: root/app/views/projects/blob/_remove.html.haml
blob: d3440ee41b5cdc51453a3c8d6983391d901b2ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#modal-remove-blob.modal
  .modal-dialog
    .modal-content
      .modal-header
        %h3.page-title Delete #{@blob.name}
        %button.close{ type: "button", "data-dismiss": "modal", "aria-label" => _('Close') }
          %span{ "aria-hidden": true } ×

      .modal-body
        = form_tag project_blob_path(@project, @id), method: :delete, class: 'js-delete-blob-form js-quick-submit js-requires-input' do
          = render 'shared/new_commit_form', placeholder: "Delete #{@blob.name}"

          .form-group.row
            .offset-sm-2.col-sm-10
              = button_tag 'Delete file', class: 'btn gl-button btn-danger btn-remove-file'
              = link_to "Cancel", '#', class: "btn gl-button btn-cancel", "data-dismiss" => "modal"