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

35 lines
1.4 KiB
Text
Raw Normal View History

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-04-26 12:48:37 +05:30
%i.fa.fa-code-fork
2014-09-02 18:07:02 +05:30
New tag
2015-04-26 12:48:37 +05:30
= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "form-horizontal" do
2014-09-02 18:07:02 +05:30
.form-group
= label_tag :tag_name, 'Name for new tag', class: 'control-label'
.col-sm-10
2015-04-26 12:48:37 +05:30
= text_field_tag :tag_name, params[:tag_name], placeholder: 'v3.0.1', required: true, tabindex: 1, 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-04-26 12:48:37 +05:30
= text_field_tag :ref, params[:ref], placeholder: 'master', required: true, tabindex: 2, class: 'form-control'
2014-09-02 18:07:02 +05:30
.light Branch name or commit SHA
2015-04-26 12:48:37 +05:30
.form-group
= label_tag :message, 'Message', class: 'control-label'
.col-sm-10
= text_field_tag :message, nil, placeholder: 'Enter message.', required: false, tabindex: 3, class: 'form-control'
.light (Optional) Entering a message will create an annotated tag.
2014-09-02 18:07:02 +05:30
.form-actions
2015-04-26 12:48:37 +05:30
= button_tag 'Create tag', class: 'btn btn-create', tabindex: 3
= link_to 'Cancel', namespace_project_tags_path(@project.namespace, @project), class: 'btn btn-cancel'
2014-09-02 18:07:02 +05:30
:javascript
2015-04-26 12:48:37 +05:30
disableButtonIfAnyEmptyField($("#new-tag-form"), ".form-control", ".btn-create");
2014-09-02 18:07:02 +05:30
var availableTags = #{@project.repository.ref_names.to_json};
$("#ref").autocomplete({
source: availableTags,
minLength: 1
});