summaryrefslogtreecommitdiff
path: root/app/views/shared/_new_commit_form.html.haml
blob: 81c33eeea4f814fd359b211ae8f724203dd0426f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- project = @project.present(current_user: current_user)
- branch_name = selected_branch

= render 'shared/commit_message_container', placeholder: placeholder

- if @project.empty_repo?
  = hidden_field_tag 'branch_name', @ref
- else
  - if can?(current_user, :push_code, @project)
    .form-group.row.branch
      = label_tag 'branch_name', _('Target Branch'), class: 'col-form-label col-sm-2'
      .col-sm-10
        = text_field_tag 'branch_name', branch_name, required: true, class: "form-control js-branch-name ref-name"

        .js-create-merge-request-container
          = render 'shared/new_merge_request_checkbox'
  - elsif project.can_current_user_push_to_branch?(branch_name)
    = hidden_field_tag 'branch_name', branch_name
  - else
    = hidden_field_tag 'branch_name', branch_name
    = hidden_field_tag 'create_merge_request', 1

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