new.html.haml 1.4 KB
Newer Older
D
Douwe Maan 已提交
1
- page_title "New tag"
2 3 4 5
- if @error
  .alert.alert-danger
    %button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
    = @error
6
%h3.page-title
S
Sullivan SENECHAL 已提交
7
  %i.fa.fa-code-fork
8
  New tag
V
Vinnie Okada 已提交
9
= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "form-horizontal" do
D
Dmitriy Zaporozhets 已提交
10
  .form-group
11
    = label_tag :tag_name, 'Name for new tag', class: 'control-label'
D
Dmitriy Zaporozhets 已提交
12
    .col-sm-10
13
      = text_field_tag :tag_name, params[:tag_name], placeholder: 'v3.0.1', required: true, tabindex: 1, class: 'form-control'
D
Dmitriy Zaporozhets 已提交
14
  .form-group
15
    = label_tag :ref, 'Create from', class: 'control-label'
D
Dmitriy Zaporozhets 已提交
16
    .col-sm-10
17
      = text_field_tag :ref, params[:ref], placeholder: 'master', required: true, tabindex: 2, class: 'form-control'
18
      .light Branch name or commit SHA
19 20 21 22 23
  .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.
24
  .form-actions
25
    = button_tag 'Create tag', class: 'btn btn-create', tabindex: 3
V
Vinnie Okada 已提交
26
    = link_to 'Cancel', namespace_project_tags_path(@project.namespace, @project), class: 'btn btn-cancel'
27 28

:javascript
29
  disableButtonIfAnyEmptyField($("#new-tag-form"), ".form-control", ".btn-create");
30 31 32 33 34 35
  var availableTags = #{@project.repository.ref_names.to_json};

  $("#ref").autocomplete({
    source: availableTags,
    minLength: 1
  });