diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-09-22 12:18:44 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-09-22 12:18:44 +0100 |
commit | a4a6b0f50eecc278d00093dad109424fa63db675 (patch) | |
tree | cc9f2095e6d2d0429d3ac16b024f1d93605dcf98 /app/views | |
parent | d0e5bafa305b7bb481cb3fe527bbbc0f5b09ade3 (diff) | |
download | gitlab-ce-a4a6b0f50eecc278d00093dad109424fa63db675.tar.gz |
Removes unused file
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/registry/repositories/_image.html.haml | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app/views/projects/registry/repositories/_image.html.haml b/app/views/projects/registry/repositories/_image.html.haml deleted file mode 100644 index a0535edafc3..00000000000 --- a/app/views/projects/registry/repositories/_image.html.haml +++ /dev/null @@ -1,32 +0,0 @@ -.container-image.js-toggle-container - .container-image-head - = link_to "#", class: "js-toggle-button" do - = icon('chevron-down', 'aria-hidden': 'true') - = escape_once(image.path) - - = clipboard_button(clipboard_text: "docker pull #{image.location}") - - - if can?(current_user, :update_container_image, @project) - .controls.hidden-xs.pull-right - = link_to project_container_registry_path(@project, image), - class: 'btn btn-remove has-tooltip', - title: 'Remove repository', - data: { confirm: 'Are you sure?' }, - method: :delete do - = icon('trash cred', 'aria-hidden': 'true') - - .container-image-tags.js-toggle-content.hide - - if image.has_tags? - .table-holder - %table.table.tags - %thead - %tr - %th Tag - %th Tag ID - %th Size - %th Created - - if can?(current_user, :update_container_image, @project) - %th - = render partial: 'tag', collection: image.tags - - else - .nothing-here-block No tags in Container Registry for this container image. |