summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/new.html.haml
blob: 9f5c1be125c7e0b04957842b4f1cb3e89cfc5765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
- page_title "New Tag"
= render "projects/commits/header_title"

- if @error
  .alert.alert-danger
    %button{ type: "button", class: "close", "data-dismiss" => "alert"} ×
    = @error
%h3.page-title
  %i.fa.fa-code-fork
  New tag
= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "form-horizontal" do
  .form-group
    = label_tag :tag_name, 'Name for new tag', class: 'control-label'
    .col-sm-10
      = text_field_tag :tag_name, params[:tag_name], placeholder: 'v3.0.1', required: true, tabindex: 1, class: 'form-control'
  .form-group
    = label_tag :ref, 'Create from', class: 'control-label'
    .col-sm-10
      = text_field_tag :ref, params[:ref], placeholder: 'master', required: true, tabindex: 2, class: 'form-control'
      .light Branch name or commit SHA
  .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.
  .form-actions
    = button_tag 'Create tag', class: 'btn btn-create', tabindex: 3
    = link_to 'Cancel', namespace_project_tags_path(@project.namespace, @project), class: 'btn btn-cancel'

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

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