X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/36c50d4695f05ac40109ed6e8358291081c5b9f7..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 a7e53e28bd..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 @@ -3,15 +3,20 @@ 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 %> - <% if obj.editable? %> - <%= 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 %> + <%= link_to_if_arvados_object @owners[obj.owner_uuid], friendly_name: true %> + <% if obj.trash_at %> <%= render_localized_date(obj.trash_at) %> @@ -21,24 +26,22 @@ SPDX-License-Identifier: AGPL-3.0 %> <%= render_localized_date(obj.delete_at) %> <% end %> - - <%= link_to_if_arvados_object obj.owner_uuid, friendly_name: true %> - - - <%= obj.uuid %>
<%= obj.portable_data_hash %> - - - <% for i in (0..[2, obj.files.length-1].min) %> - <% file = obj.files[i] %> - <% file_path = "#{file[0]}/#{file[1]}" %> - <%= file_path %>
- <% end %> - <% if obj.files.length > 3 %> - <%= "(#{obj.files.length-3} more files)" %> - <% 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 %>