20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / projects / _index_projects.html.erb
diff --git a/apps/workbench/app/views/projects/_index_projects.html.erb b/apps/workbench/app/views/projects/_index_projects.html.erb
deleted file mode 100644 (file)
index e726a46..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<div class="container-fluid arv-project-list">
-  <% tree.each do |projectnode| %>
-    <% rowtype = projectnode[:object].class %>
-    <% next if rowtype != Group and !show_root_node %>
-    <div class="<%= 'project' if rowtype.in?([Group,User]) %> row">
-      <div class="col-md-4" style="padding-left: <%= projectnode[:depth] - (show_root_node ? 0 : 1) %>em;">
-        <% if show_root_node and rowtype == String %>
-          <i class="fa fa-fw fa-share-alt"></i>
-          <%= projectnode[:object] %>
-        <% elsif show_root_node and rowtype == User %>
-          <% if projectnode[:object].uuid == current_user.andand.uuid %>
-            <i class="fa fa-fw fa-folder-o"></i>
-            <%= link_to project_path(id: projectnode[:object].uuid) do %>
-              Home
-            <% end %>
-          <% else %>
-            <i class="fa fa-fw fa-folder-o"></i>
-            <%= projectnode[:object].friendly_link_name %>
-          <% end %>
-        <% elsif rowtype == Group %>
-          <i class="fa fa-fw fa-folder-o"></i>
-          <%= link_to projectnode[:object] do %>
-            <%= projectnode[:object].friendly_link_name %>
-          <% end %>
-        <% end %>
-      </div>
-      <% if projectnode[:object].respond_to?(:description) and not projectnode[:object].description.blank? %>
-        <div class="col-md-8 small"><%= render_attribute_as_textile(projectnode[:object], "description", projectnode[:object].description, true) %></div>
-      <% end %>
-    </div>
-  <% end %>
-</div>