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

24 lines
914 B
Text
Raw Normal View History

2013-07-16 17:09:23 -04:00
%h3.page-title
%i.icon-code-fork
New branch
= form_tag project_branches_path, method: :post, class: "form-horizontal" do
.form-group
2013-07-16 17:09:23 -04:00
= label_tag :branch_name, 'Name for new branch', class: 'control-label'
.col-sm-10
2014-01-16 05:05:55 -05:00
= text_field_tag :branch_name, nil, placeholder: 'enter new branch name', required: true, tabindex: 1, class: 'form-control'
.form-group
2013-07-16 17:09:23 -04:00
= label_tag :ref, 'Create from', class: 'control-label'
.col-sm-10
2014-01-16 05:05:55 -05:00
= text_field_tag :ref, nil, 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
2013-07-17 01:15:55 -04:00
= submit_tag 'Create branch', class: 'btn btn-create', tabindex: 3
2013-07-16 17:09:23 -04:00
= link_to 'Cancel', project_branches_path(@project), class: 'btn btn-cancel'
:javascript
var availableTags = #{@project.repository.ref_names.to_json};
$("#ref").autocomplete({
source: availableTags,
minLength: 1
});