2015-04-30 15:33:02 -04:00
|
|
|
- page_title "New Branch"
|
2015-09-17 06:16:24 -04:00
|
|
|
|
2014-07-27 10:40:00 -04:00
|
|
|
- if @error
|
|
|
|
.alert.alert-danger
|
2016-12-26 05:47:16 -05:00
|
|
|
%button.close{ type: "button", "data-dismiss" => "alert" } ×
|
2014-07-27 10:40:00 -04:00
|
|
|
= @error
|
2013-07-16 17:09:23 -04:00
|
|
|
%h3.page-title
|
2015-12-02 08:27:29 -05:00
|
|
|
New Branch
|
|
|
|
%hr
|
|
|
|
|
2015-12-17 13:59:15 -05:00
|
|
|
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal js-create-branch-form js-requires-input" do
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2015-12-02 08:30:12 -05:00
|
|
|
= label_tag :branch_name, nil, class: 'control-label'
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2017-01-03 11:31:43 -05:00
|
|
|
= text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name'
|
2015-12-17 13:59:15 -05:00
|
|
|
.help-block.text-danger.js-branch-name-error
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2013-07-16 17:09:23 -04:00
|
|
|
= label_tag :ref, 'Create from', class: 'control-label'
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2017-01-03 11:31:43 -05:00
|
|
|
= hidden_field_tag :ref, params[:ref] || @project.default_branch
|
|
|
|
= dropdown_tag(params[:ref] || @project.default_branch,
|
|
|
|
options: { toggle_class: 'js-branch-select wide',
|
|
|
|
filter: true, dropdown_class: "dropdown-menu-selectable", placeholder: "Search branches",
|
|
|
|
data: { selected: params[:ref] || @project.default_branch, field_name: 'ref' } })
|
2015-12-02 08:36:44 -05:00
|
|
|
.help-block Existing branch name, tag, or commit SHA
|
2013-07-16 17:09:23 -04:00
|
|
|
.form-actions
|
2014-09-26 10:57:36 -04:00
|
|
|
= button_tag 'Create branch', class: 'btn btn-create', tabindex: 3
|
2015-01-24 13:02:58 -05:00
|
|
|
= link_to 'Cancel', namespace_project_branches_path(@project.namespace, @project), class: 'btn btn-cancel'
|
2013-07-16 17:09:23 -04:00
|
|
|
|
|
|
|
:javascript
|
2015-12-02 08:41:02 -05:00
|
|
|
var availableRefs = #{@project.repository.ref_names.to_json};
|
2013-07-16 17:09:23 -04:00
|
|
|
|
2015-12-17 13:59:15 -05:00
|
|
|
new NewBranchForm($('.js-create-branch-form'), availableRefs)
|