20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / collections / index.html.erb
diff --git a/apps/workbench/app/views/collections/index.html.erb b/apps/workbench/app/views/collections/index.html.erb
deleted file mode 100644 (file)
index b5055a2..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<%#= render :partial => 'nav' %>
-
-<table class="topalign table table-bordered table-striped">
-  <thead>
-    <tr class="contain-align-left">
-      <th>
-       uuid
-      </th><th>
-       created
-      </th><th>
-       protected
-      </th><th>
-       groups
-      </th><th>
-       origin
-      </th>
-    </tr>
-  </thead>
-  <tbody>
-
-    <% @collection_info.sort_by { |k,c| c[:created_at].is_a?(Time) ? c[:created_at] : Time.now }.reverse.each do |uuid, c| %>
-
-    <tr class="collection">
-      <td>
-       <% if @collections.has_key? uuid %>
-       <%= link_to_if_arvados_object uuid %>
-       <% else %>
-       <%= uuid %>
-       <% end %>
-      </td><td>
-       <%= raw(distance_of_time_in_words(c[:created_at], Time.now).sub('about ','~').sub(' ','&nbsp;')) if c[:created_at] %>
-      </td><td>
-       <%= ('Y' if c[:wanted_by_me]) or ('y' if c[:wanted]) %>
-      </td><td>
-       <%= c[:groups].size if c[:groups] %>
-      </td><td>
-       <% if c[:origin] %>
-       <span class="deemphasize"><%= c[:origin].name %></span>
-       <%= c[:origin].head_uuid %>
-       <% end %>
-      </td>
-    </tr>
-
-    <% end %>
-
-  </tbody>
-</table>