Harmonized all sections to use the new content template and layout
[arvados.git] / apps / workbench / app / views / groups / index.html.erb
diff --git a/apps/workbench/app/views/groups/index.html.erb b/apps/workbench/app/views/groups/index.html.erb
deleted file mode 100644 (file)
index 1e81518..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-<table class="table table-hover">
-  <thead>
-    <tr class="contain-align-left">
-      <th>
-       id
-      </th><th>
-       name
-      </th><th>
-       owner
-      </th><th>
-       incoming permissions
-      </th><th>
-       outgoing permissions
-      </th><th>
-       owned
-      </th>
-    </tr>
-  </thead>
-  <tbody>
-
-    <% @groups.sort_by { |g| g[:created_at] }.reverse.each do |g| %>
-
-    <tr>
-      <td>
-        <%= link_to_if_arvados_object g %>
-      </td><td>
-        <%= g.name %>
-      </td><td>
-        <%= g.owner_uuid %>
-      </td><td>
-        <%= @links_to.select { |x| x.head_uuid == g.uuid }.collect(&:tail_uuid).uniq.count %>
-      </td><td>
-        <%= @links_from.select { |x| x.tail_uuid == g.uuid }.collect(&:head_uuid).uniq.count %>
-      </td><td>
-        <%= @owned_users.select { |x| x.owner_uuid == g.uuid }.count %> users<br />
-      </td>
-    </tr>
-
-    <% end %>
-
-  </tbody>
-</table>