gitlab-org--gitlab-foss/app/views/projects/branches/new.html.haml

30 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title "New branch"
- if @error
.alert.alert-danger
%button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
= @error
2013-07-16 21:09:23 +00:00
%h3.page-title
2014-10-01 22:21:29 +00:00
%i.fa.fa-code-fork
2013-07-16 21:09:23 +00:00
New branch
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal" do
.form-group
2013-07-16 21:09:23 +00:00
= label_tag :branch_name, 'Name for new branch', class: 'control-label'
.col-sm-10
= text_field_tag :branch_name, params[:branch_name], placeholder: 'enter new branch name', required: true, tabindex: 1, class: 'form-control'
.form-group
2013-07-16 21:09:23 +00:00
= label_tag :ref, 'Create from', class: 'control-label'
.col-sm-10
= text_field_tag :ref, params[:ref], placeholder: 'existing branch name, tag or commit SHA', required: true, tabindex: 2, class: 'form-control'
2013-07-16 21:09:23 +00:00
.form-actions
= button_tag 'Create branch', class: 'btn btn-create', tabindex: 3
= link_to 'Cancel', namespace_project_branches_path(@project.namespace, @project), class: 'btn btn-cancel'
2013-07-16 21:09:23 +00:00
:javascript
disableButtonIfAnyEmptyField($("#new-branch-form"), ".form-control", ".btn-create");
2013-07-16 21:09:23 +00:00
var availableTags = #{@project.repository.ref_names.to_json};
$("#ref").autocomplete({
source: availableTags,
minLength: 1
});