Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_new_commit_form.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2931fb0c2cefc7b6692530aea29ea3cc144b144d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= render 'shared/commit_message_container', placeholder: placeholder

- unless @project.empty_repo?
  .form-group.branch
    = label_tag 'branch', class: 'control-label' do
      Branch
    .col-sm-10
      = text_field_tag 'new_branch', @new_branch || @ref, class: "form-control js-new-branch"

      .js-create-merge-request-container
        .checkbox
          - nonce = SecureRandom.hex
          = label_tag "create_merge_request-#{nonce}" do
            = check_box_tag 'create_merge_request', 1, true, class: 'js-create-merge-request', id: "create_merge_request-#{nonce}"
            Start a <strong>new merge request</strong> with these changes

  = hidden_field_tag 'original_branch', @ref, class: 'js-original-branch'