2018-02-28 03:06:18 -05:00
|
|
|
- project = @project.present(current_user: current_user)
|
|
|
|
- branch_name = selected_branch
|
|
|
|
|
2015-11-17 12:53:56 -05:00
|
|
|
= render 'shared/commit_message_container', placeholder: placeholder
|
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
- if @project.empty_repo?
|
2017-04-19 20:37:44 -04:00
|
|
|
= hidden_field_tag 'branch_name', @ref
|
2015-12-18 04:03:34 -05:00
|
|
|
- else
|
|
|
|
- if can?(current_user, :push_code, @project)
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row.branch
|
2018-04-12 19:16:56 -04:00
|
|
|
= label_tag 'branch_name', _('Target Branch'), class: 'col-form-label col-sm-2'
|
2015-12-18 04:03:34 -05:00
|
|
|
.col-sm-10
|
2018-02-28 03:06:18 -05:00
|
|
|
= text_field_tag 'branch_name', branch_name, required: true, class: "form-control js-branch-name ref-name"
|
2015-11-17 12:53:56 -05:00
|
|
|
|
2015-12-18 04:03:34 -05:00
|
|
|
.js-create-merge-request-container
|
2017-06-15 23:02:14 -04:00
|
|
|
= render 'shared/new_merge_request_checkbox'
|
2018-02-28 03:06:18 -05:00
|
|
|
- elsif project.can_current_user_push_to_branch?(branch_name)
|
|
|
|
= hidden_field_tag 'branch_name', branch_name
|
2015-12-18 04:03:34 -05:00
|
|
|
- else
|
2018-02-28 03:06:18 -05:00
|
|
|
= hidden_field_tag 'branch_name', branch_name
|
2015-12-18 04:03:34 -05:00
|
|
|
= hidden_field_tag 'create_merge_request', 1
|
2015-11-17 12:53:56 -05:00
|
|
|
|
|
|
|
= hidden_field_tag 'original_branch', @ref, class: 'js-original-branch'
|