gitlabhq/gitlabhq

View on GitHub
app/views/projects/tags/new.html.haml

Summary

Maintainability
Test Coverage
%h3.page-title
  %i.icon-code-fork
  New tag
= form_tag project_tags_path, method: :post do
  .control-group
    = label_tag :tag_name, 'Name for new tag', class: 'control-label'
    .controls
      = text_field_tag :tag_name, nil, placeholder: 'v3.0.1', required: true, tabindex: 1
  .control-group
    = label_tag :ref, 'Create from', class: 'control-label'
    .controls
      = text_field_tag :ref, nil, placeholder: 'master', required: true, tabindex: 2
      .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
  });