1 <%# Copyright (C) The Arvados Authors. All rights reserved.
3 SPDX-License-Identifier: AGPL-3.0 %>
5 <% @objects.each do |obj| %>
6 <tr data-object-uuid="<%= obj.uuid %>" data-kind="<%= obj.kind %>" >
8 <% if obj.editable? and obj.is_trashed %>
9 <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection', style: 'cursor: pointer;' %>
13 <%= if !obj.name.blank? then obj.name else obj.uuid end %>
15 <% if obj.is_trashed %>
17 <%= link_to_if_arvados_object @owners[obj.owner_uuid], friendly_name: true %>
22 <%= render_localized_date(obj.trash_at) %>
25 <% if obj.delete_at %>
26 <%= render_localized_date(obj.delete_at) %>
30 <td colspan="2" class="trash-project-msg">
31 <%= link_to_if_arvados_object @owners[obj.owner_uuid], friendly_name: true %>
33 This item is contained within a trashed project.
38 <% if defined? obj.portable_data_hash %>
39 <br /><%= obj.portable_data_hash %>
43 <%= render partial: 'untrash_item', locals: {object:obj} %>