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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
1.2 KiB
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
- page_title _("New Branch")
2017-08-17 22:00:37 +05:30
- default_ref = params[:ref] || @project.default_branch
2015-09-25 12:07:36 +05:30
2015-04-26 12:48:37 +05:30
- if @error
2022-07-16 23:28:13 +05:30
= render Pajamas::AlertComponent.new(variant: :danger) do |c|
= c.body do
2021-03-08 18:12:59 +05:30
= @error
2022-07-23 23:45:48 +05:30
%h1.page-title.gl-font-size-h-display
2021-11-11 11:23:49 +05:30
= _('New Branch')
2015-12-23 02:04:40 +05:30
2018-11-08 19:23:39 +05:30
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "js-create-branch-form js-requires-input" do
2023-06-20 00:43:36 +05:30
.form-group.gl-max-w-80
= label_tag :branch_name, _('Branch name')
= text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name monospace'
.form-text.text-muted.text-danger.js-branch-name-error{ 'aria-live': 'assertive' }
.form-group.gl-max-w-80
= label_tag :ref, _('Create from')
.js-new-branch-ref-selector{ data: { project_id: @project.id, default_branch_name: default_ref, hidden_input_name: 'ref' } }
.form-text.text-muted
= _('Existing branch name, tag, or commit SHA')
= render Pajamas::ButtonComponent.new(variant: :confirm, button_options: { type: 'submit', class: 'gl-mr-3' }) do
= _('Create branch')
= link_to _('Cancel'), project_branches_path(@project), class: 'gl-button btn btn-default btn-cancel'
2023-03-04 22:38:38 +05:30