20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / collections / _choose_rows.html.erb
diff --git a/apps/workbench/app/views/collections/_choose_rows.html.erb b/apps/workbench/app/views/collections/_choose_rows.html.erb
deleted file mode 100644 (file)
index 50f7ffe..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<% @objects.each do |object| %>
-    <div class="row filterable selectable <%= 'use-preview-selection' if params['use_preview_selection']%>" data-object-uuid="<%= object.uuid %>"
-         data-preview-href="<%= chooser_preview_url_for object, params['use_preview_selection'] %>"
-         style="margin-left: 1em; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #DDDDDD">
-      <i class="fa fa-fw fa-archive"></i>
-      <% if object.respond_to? :name %>
-        <% if not (object.name.nil? or object.name.empty?) %>
-          <%= object.name %>
-        <% elsif object.is_a? Collection and object.files.length > 0 %>
-          <%= object.files[0][1] %>
-          <%= "+ #{object.files.length-1} more" if object.files.length > 1 %>
-        <% else %>
-          <%= object.uuid %>
-        <% end %>
-      <% else %>
-        <%= object.uuid %>
-      <% end %>
-      <% links_for_object(object).each do |tag| %>
-        <% if tag.link_class == 'tag' %>
-          <span class="label label-info"><%= tag.name %></span>
-        <% end %>
-      <% end %>
-    </div>
-<% end %>