summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/index.html.haml
blob: 53f3e67ff2cc5ee6159ca437dfc372b8438d7665 (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
= render "projects/commits/head"

- if can? current_user, :push_code, @project
  .pull-right
    = link_to new_project_tag_path(@project), class: 'btn btn-create new-tag-btn' do
      %i.icon-add-sign
      New tag

%p
  Tags give ability to mark specific points in history as being important
%hr

- unless @tags.empty?
  %ul.bordered-list
    - @tags.each do |tag|
      = render 'tag', tag: tag

  = paginate @tags, theme: 'gitlab'

- else
  .nothing-here-block
    Repository has no tags yet.
    %br
    %small
      Use git tag command to add a new one:
      %br
      %span.monospace git tag -a v1.4 -m 'version 1.4'