summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/_tag.html.haml
blob: 2ca295fc5f3383b51d4d0d3298ec3d50284126e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- commit = @repository.commit(tag.target)
%li
  %div
    = link_to namespace_project_commits_path(@project.namespace, @project, tag.name), class: "" do
      %strong
        %i.fa.fa-tag
        = tag.name
    - if tag.message.present?
       
      = strip_gpg_signature(tag.message)
    .controls
      - if can? current_user, :download_code, @project
        = render 'projects/repositories/download_archive', ref: tag.name, btn_class: 'btn-grouped btn-group-xs'
      - if can?(current_user, :admin_project, @project)
        = link_to namespace_project_tag_path(@project.namespace, @project, tag.name), class: 'btn btn-xs btn-remove remove-row grouped', method: :delete, data: { confirm: 'Removed tag cannot be restored. Are you sure?'}, remote: true do
          %i.fa.fa-trash-o

  - if commit
    = render 'projects/branches/commit', commit: commit, project: @project
  - else
    %p
      Cant find HEAD commit for this tag