summaryrefslogtreecommitdiff
path: root/app/views/projects/container_registry/_tag.html.haml
blob: bf816d109b645c6f8a9d6cf1dfabc93d60fef4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%tr.tag
  %td
    = escape_once(tag.name)
    = clipboard_button(clipboard_text: "docker pull #{tag.path}")
  %td
    - if layer = tag.layers.first
      %span.has-tooltip(title="#{layer.revision}")
        = layer.short_revision
    - else
      \-
  %td
    = number_to_human_size(tag.total_size)
    ·
    = pluralize(tag.layers.size, "layer")
  %td
    = time_ago_in_words(tag.created_at)
  - if can?(current_user, :update_container_registry, @project)
    %td.content
      .controls.hidden-xs.pull-right
        = link_to namespace_project_container_registry_path(@project.namespace, @project, tag.name), class: 'btn btn-remove has-tooltip', title: "Remove", data: { confirm: "Are you sure?" }, method: :delete do
          = icon("trash cred")