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

47 lines
2.3 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- page_title s_('TagsPage|New Tag')
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
.alert.alert-danger
2017-08-17 22:00:37 +05:30
%button.close{ type: "button", "data-dismiss" => "alert" } ×
2015-04-26 12:48:37 +05:30
= @error
2015-11-26 14:37:03 +05:30
2014-09-02 18:07:02 +05:30
%h3.page-title
2018-03-17 18:26:18 +05:30
= s_('TagsPage|New Tag')
2015-11-26 14:37:03 +05:30
%hr
2016-06-02 11:05:42 +05:30
= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "form-horizontal common-note-form tag-form js-quick-submit js-requires-input" do
2014-09-02 18:07:02 +05:30
.form-group
2015-12-23 02:04:40 +05:30
= label_tag :tag_name, nil, class: 'control-label'
2014-09-02 18:07:02 +05:30
.col-sm-10
2018-03-17 18:26:18 +05:30
= text_field_tag :tag_name, params[:tag_name], required: true, autofocus: true, class: 'form-control'
2014-09-02 18:07:02 +05:30
.form-group
= label_tag :ref, 'Create from', class: 'control-label'
2017-08-17 22:00:37 +05:30
.col-sm-10.create-from
.dropdown
= hidden_field_tag :ref, default_ref
2018-03-17 18:26:18 +05:30
= button_tag type: 'button', title: default_ref, class: 'dropdown-menu-toggle wide js-branch-select', required: true, data: { toggle: 'dropdown', selected: default_ref, field_name: 'ref' } do
2017-08-17 22:00:37 +05:30
.text-left.dropdown-toggle-text= default_ref
= render 'shared/ref_dropdown', dropdown_class: 'wide'
2018-03-17 18:26:18 +05:30
.help-block
= s_('TagsPage|Existing branch name, tag, or commit SHA')
2015-04-26 12:48:37 +05:30
.form-group
2015-12-23 02:04:40 +05:30
= label_tag :message, nil, class: 'control-label'
2015-04-26 12:48:37 +05:30
.col-sm-10
2018-03-17 18:26:18 +05:30
= text_area_tag :message, @message, required: false, class: 'form-control', rows: 5
.help-block
= s_('TagsPage|Optionally, add a message to the tag.')
2015-11-26 14:37:03 +05:30
%hr
.form-group
2018-03-17 18:26:18 +05:30
= label_tag :release_description, s_('TagsPage|Release notes'), class: 'control-label'
2015-11-26 14:37:03 +05:30
.col-sm-10
2017-08-17 22:00:37 +05:30
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
2018-03-17 18:26:18 +05:30
= render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here...'), current_text: @release_description
2017-08-17 22:00:37 +05:30
= render 'shared/notes/hints'
2018-03-17 18:26:18 +05:30
.help-block
= s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.')
2014-09-02 18:07:02 +05:30
.form-actions
2018-03-17 18:26:18 +05:30
= button_tag s_('TagsPage|Create tag'), class: 'btn btn-create'
= link_to s_('TagsPage|Cancel'), project_tags_path(@project), class: 'btn btn-cancel'
2017-09-10 17:25:29 +05:30
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe