debian-mirror-gitlab/app/views/projects/branches/new.html.haml

33 lines
1.2 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "New Branch"
2015-09-25 12:07:36 +05:30
= render "projects/commits/header_title"
2015-04-26 12:48:37 +05:30
- if @error
.alert.alert-danger
%button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
= @error
2014-09-02 18:07:02 +05:30
%h3.page-title
2015-12-23 02:04:40 +05:30
New Branch
%hr
2015-09-11 14:41:01 +05:30
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal js-requires-input" do
2014-09-02 18:07:02 +05:30
.form-group
2015-12-23 02:04:40 +05:30
= label_tag :branch_name, nil, class: 'control-label'
2014-09-02 18:07:02 +05:30
.col-sm-10
2015-12-23 02:04:40 +05:30
= text_field_tag :branch_name, params[:branch_name], required: true, tabindex: 1, autofocus: true, class: 'form-control'
2014-09-02 18:07:02 +05:30
.form-group
= label_tag :ref, 'Create from', class: 'control-label'
.col-sm-10
2015-12-23 02:04:40 +05:30
= text_field_tag :ref, params[:ref] || @project.default_branch, required: true, tabindex: 2, class: 'form-control'
.help-block Existing branch name, tag, or commit SHA
2014-09-02 18:07:02 +05:30
.form-actions
2015-04-26 12:48:37 +05:30
= button_tag 'Create branch', class: 'btn btn-create', tabindex: 3
= link_to 'Cancel', namespace_project_branches_path(@project.namespace, @project), class: 'btn btn-cancel'
2014-09-02 18:07:02 +05:30
:javascript
2015-12-23 02:04:40 +05:30
var availableRefs = #{@project.repository.ref_names.to_json};
2014-09-02 18:07:02 +05:30
$("#ref").autocomplete({
2015-12-23 02:04:40 +05:30
source: availableRefs,
2014-09-02 18:07:02 +05:30
minLength: 1
});