X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/65622f423c2ee35250856657b06118481d53edc8..6249668bc01ec7561503f2e7de7063f25ac7ba56:/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 73b89dd549..a7e53e28bd 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,36 +1,41 @@ -<% @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| %> - <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection' %> + <% 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 obj, friendly_name: true %> + <% if obj.trash_at %> + <%= render_localized_date(obj.trash_at) %> + <% end %> +
+ <% if obj.delete_at %> + <%= render_localized_date(obj.delete_at) %> + <% end %> + - <%= obj.created_at.to_s if obj.created_at %> + <%= link_to_if_arvados_object obj.owner_uuid, friendly_name: true %> + - <%= obj.trash_at.to_s if obj.trash_at %> + <%= obj.uuid %>
<%= obj.portable_data_hash %> - <% i = 0 %> - <% while i < 3 and i < obj.files.length %> + <% for i in (0..[2, obj.files.length-1].min) %> <% file = obj.files[i] %> <% file_path = "#{file[0]}/#{file[1]}" %> - <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: obj.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
- <% i += 1 %> - <% end %> - <% if i < obj.files.length %> - ⋮ + <%= file_path %>
<% end %> - - - - <% if @collection_info[obj.uuid] %> - <% @collection_info[obj.uuid][:tag_links].each do |tag_link| %> - <%= tag_link.name %> -   - <% end %> + <% if obj.files.length > 3 %> + <%= "(#{obj.files.length-3} more files)" %> <% end %> - <%= render partial: 'untrash_item', locals: {object:obj} %>