2015-04-30 15:33:02 -04:00
|
|
|
- page_title "New Branch"
|
2015-09-17 06:16:24 -04:00
|
|
|
= render "projects/commits/header_title"
|
|
|
|
|
2014-07-27 10:40:00 -04:00
|
|
|
- if @error
|
|
|
|
.alert.alert-danger
|
|
|
|
%button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
|
|
|
|
= @error
|
2013-07-16 17:09:23 -04:00
|
|
|
%h3.page-title
|
2014-10-01 18:21:29 -04:00
|
|
|
%i.fa.fa-code-fork
|
2013-07-16 17:09:23 -04:00
|
|
|
New branch
|
2015-06-26 21:53:17 -04:00
|
|
|
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal js-requires-input" do
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2013-07-16 17:09:23 -04:00
|
|
|
= label_tag :branch_name, 'Name for new branch', class: 'control-label'
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2014-07-27 10:40:00 -04:00
|
|
|
= text_field_tag :branch_name, params[:branch_name], placeholder: 'enter new branch name', required: true, tabindex: 1, class: 'form-control'
|
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
|
2014-07-27 10:40:00 -04:00
|
|
|
= text_field_tag :ref, params[:ref], placeholder: 'existing branch name, tag or commit SHA', required: true, tabindex: 2, class: 'form-control'
|
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
|
|
|
|
var availableTags = #{@project.repository.ref_names.to_json};
|
|
|
|
|
|
|
|
$("#ref").autocomplete({
|
|
|
|
source: availableTags,
|
|
|
|
minLength: 1
|
|
|
|
});
|