new.html.haml 1.0 KB
Newer Older
1 2 3 4
- if @error
  .alert.alert-danger
    %button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
    = @error
5 6 7
%h3.page-title
  %i.icon-code-fork
  New tag
D
Dmitriy Zaporozhets 已提交
8
= form_tag project_tags_path, method: :post, 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 18 19 20 21 22 23 24 25 26 27 28
      .light Branch name or commit SHA
  .form-actions
    = submit_tag 'Create tag', class: 'btn btn-create', tabindex: 3
    = link_to 'Cancel', project_tags_path(@project), class: 'btn btn-cancel'

:javascript
  var availableTags = #{@project.repository.ref_names.to_json};

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