20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / work_units / _show_all_processes_rows.html.erb
diff --git a/apps/workbench/app/views/work_units/_show_all_processes_rows.html.erb b/apps/workbench/app/views/work_units/_show_all_processes_rows.html.erb
deleted file mode 100644 (file)
index b0afb33..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<% @objects.each do |obj| %>
-  <% wu = obj.work_unit %>
-  <tr data-object-uuid="<%= wu.uuid %>" >
-    <td>
-      <%= link_to_if_arvados_object obj, friendly_name: true %>
-    </td>
-    <td>
-      <span class="label label-<%= wu.state_bootstrap_class %>"><%= wu.state_label %></span>
-    </td>
-    <td>
-      <%= link_to_if_arvados_object wu.owner_uuid, friendly_name: true %>
-    </td>
-    <td>
-      <%= render_localized_date(wu.created_at) %>
-    </td>
-    <td>
-      <%= render partial: 'work_units/show_output', locals: {wu: wu, align: ''} %>
-    </td>
-    <td>
-      <%= render partial: 'delete_object_button', locals: {object:obj} %>
-    </td>
-  </tr>
-<% end %>