summaryrefslogtreecommitdiff
path: root/app/views/projects/commit/_change.html.haml
blob: b5f67cae341319965980ac72e43cc8c78d3b0d75 (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
40
- case type.to_s
- when 'revert'
  - label = 'Revert'
  - branch_label = 'Revert in branch'
- when 'cherry-pick'
  - label = 'Cherry-pick'
  - branch_label = 'Pick into branch'

.modal{ id: "modal-#{type}-commit" }
  .modal-dialog
    .modal-content
      .modal-header
        %a.close{ href: "#", "data-dismiss" => "modal" } ×
        %h3.page-title== #{label} this #{commit.change_type_title(current_user)}
      .modal-body
        = form_tag [type.underscore, @project.namespace.becomes(Namespace), @project, commit], method: :post, remote: false, class: "form-horizontal js-#{type}-form js-requires-input" do
          .form-group.branch
            = label_tag 'start_branch', branch_label, class: 'control-label'
            .col-sm-10
              = hidden_field_tag :start_branch, @project.default_branch, id: 'start_branch'
              = dropdown_tag(@project.default_branch, options: { title: "Switch branch", filter: true, placeholder: "Search branches", toggle_class: 'js-project-refs-dropdown js-target-branch dynamic', dropdown_class: 'dropdown-menu-selectable', data: { field_name: "start_branch", selected: @project.default_branch, start_branch: @project.default_branch, refs_url: namespace_project_branches_path(@project.namespace, @project), submit_form_on_click: false } })

              - if can?(current_user, :push_code, @project)
                .js-create-merge-request-container
                  .checkbox
                    = label_tag do
                      = check_box_tag 'create_merge_request', 1, true, class: 'js-create-merge-request', id: nil
                      Start a <strong>new merge request</strong> with these changes
              - else
                = hidden_field_tag 'create_merge_request', 1, id: nil
          .form-actions
            = submit_tag label, class: 'btn btn-create'
            = link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"

            - unless can?(current_user, :push_code, @project)
              .inline.prepend-left-10
                = commit_in_fork_help

:javascript
  new NewCommitForm($('.js-#{type}-form'), 'start_branch')