summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/new.html.haml
blob: 160d4c7a22372d82e415c67b5ad19065ed36e24d (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
38
39
40
41
42
43
44
45
- page_title "New Tag"

- if @error
  .alert.alert-danger
    %button.close{ type: "button", "data-dismiss" => "alert" } ×
    = @error

%h3.page-title
  New Tag
%hr

= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "form-horizontal common-note-form tag-form js-quick-submit js-requires-input" do
  .form-group
    = label_tag :tag_name, nil, class: 'control-label'
    .col-sm-10
      = text_field_tag :tag_name, params[:tag_name], required: true, tabindex: 1, autofocus: true, class: 'form-control'
  .form-group
    = label_tag :ref, 'Create from', class: 'control-label'
    .col-sm-10
      = text_field_tag :ref, params[:ref] || @project.default_branch, required: true, tabindex: 2, class: 'form-control'
      .help-block  Branch name or commit SHA
  .form-group
    = label_tag :message, nil, class: 'control-label'
    .col-sm-10
      = text_area_tag :message, nil, required: false, tabindex: 3, class: 'form-control', rows: 5
      .help-block Optionally, add a message to the tag.
  %hr
  .form-group
    = label_tag :release_description, 'Release notes', class: 'control-label'
    .col-sm-10
      = render layout: 'projects/md_preview', locals: { preview_class: "md-preview", referenced_users: true } do
        = render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: "Write your release notes or drag files here..."
        = render 'projects/notes/hints'
      .help-block Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.
  .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
  var availableRefs = #{@project.repository.ref_names.to_json};

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