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

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

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