summaryrefslogtreecommitdiff
path: root/app/views/projects/branches/_delete_protected_modal.html.haml
blob: f00a0ee6925d1a2b984e2809326f5afeb0a717fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#modal-delete-branch.modal{ tabindex: -1 }
  .modal-dialog
    .modal-content
      .modal-header
        %button.close{ data: { dismiss: 'modal' } } ×
        %h3.page-title
          Delete protected branch
          = surround "'", "'?" do
            %span.js-branch-name.ref-name>[branch name]

      .modal-body
        %p
          You’re about to permanently delete the protected branch
          = succeed '.' do
            %strong.js-branch-name.ref-name [branch name]
        %p.js-not-merged
          - default_branch = capture do
            %span.ref-name= @repository.root_ref
          = s_("Branches|This branch hasn’t been merged into %{default_branch}.").html_safe % { default_branch: default_branch }
          = s_("Branches|To avoid data loss, consider merging this branch before deleting it.")
        %p
          Once you confirm and press
          = succeed ',' do
            %strong Delete protected branch
          it cannot be undone or recovered.
        %p
          %strong To confirm, type
          %kbd.js-branch-name [branch name]

        .form-group
        = text_field_tag 'delete_branch_input', '', class: 'form-control js-delete-branch-input'

      .modal-footer
        %button.btn{ data: { dismiss: 'modal' } } Cancel
        = link_to 'Delete protected branch', '',
          class: "btn btn-danger js-delete-branch",
          title: 'Delete branch',
          method: :delete,
          "aria-label" => "Delete"