Merge branch '2411-check-copyright'
[arvados.git] / apps / workbench / app / views / trash_items / _show_trash_rows.html.erb
index 4cc16f6202004dc157c69b2fc9c58a1a62e5234d..6fc1676b85dbcb378d300f5efffb67c2edde98a3 100644 (file)
@@ -1,8 +1,12 @@
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
 <% @objects.each do |obj| %>
     <tr data-object-uuid="<%= obj.uuid %>" data-kind="<%= obj.kind %>" >
       <td>
         <% if obj.editable? %>
-          <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection' %>
+          <%= check_box_tag 'uuids[]', obj.uuid, false, :class => 'persistent-selection', style: 'cursor: pointer;' %>
         <% end %>
       </td>
       <td>
@@ -10,7 +14,7 @@
       <td>
         <%= render_localized_date(obj.trash_at) if obj.trash_at %>
       <td>
-        <%= render_localized_date(obj.created_at) if obj.created_at %>
+        <%= render_localized_date(obj.delete_at) if obj.delete_at %>
       </td>
       <td>
         <%= link_to_if_arvados_object obj.owner_uuid, friendly_name: true %>