X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9ff2df8cfa1f0798c22e4b3c6ef91d4677961295..bcb16d1825fd2e3105a51a2a2f9a119d71f33c8d:/apps/workbench/app/views/trash_items/_show_trash_rows.html.erb diff --git a/apps/workbench/app/views/trash_items/_show_trash_rows.html.erb b/apps/workbench/app/views/trash_items/_show_trash_rows.html.erb index 7e01e3d0fe..dd451b6eac 100644 --- a/apps/workbench/app/views/trash_items/_show_trash_rows.html.erb +++ b/apps/workbench/app/views/trash_items/_show_trash_rows.html.erb @@ -1,29 +1,47 @@ -<% @objects.sort_by { |obj| obj.created_at }.reverse.each do |obj| %> - +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +<% @objects.each do |obj| %> + + + <% if obj.editable? and obj.is_trashed %> + <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection', style: 'cursor: pointer;' %> + <% end %> + + + <%= if !obj.name.blank? then obj.name else obj.uuid end %> + + <% if obj.is_trashed %> - <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection' %> + <%= link_to_if_arvados_object @owners[obj.owner_uuid], friendly_name: true %> + - <%= if !obj.name.blank? then obj.name else obj.uuid end %> - - <%= obj.created_at.to_s if obj.created_at %> - - <%= obj.trash_at.to_s if obj.trash_at %> - - - <% i = 0 %> - <% while i < 5 and i < obj.files.length %> - <% file = obj.files[i] %> - <% file_path = "#{file[0]}/#{file[1]}" %> - <%= file_path %>
- <% i += 1 %> + <% if obj.trash_at %> + <%= render_localized_date(obj.trash_at) %> <% end %> - <% if i < obj.files.length %> - … +
+ <% if obj.delete_at %> + <%= render_localized_date(obj.delete_at) %> <% end %> - - <%= render partial: 'untrash_item', locals: {object:obj} %> + <% else %> + + <%= link_to_if_arvados_object @owners[obj.owner_uuid], friendly_name: true %> +
+ This item is contained within a trashed project. - + <% end %> + + <%= obj.uuid %> + <% if defined? obj.portable_data_hash %> +
<%= obj.portable_data_hash %> + <% end %> + + + <%= render partial: 'untrash_item', locals: {object:obj} %> + + + <% end %>