Performance fix to only visit a node once.
[arvados.git] / apps / workbench / app / views / authorized_keys / index.html.erb
index 99ab69bc3ad3963822d42eb50bfca760e535ee4e..433297780c3137ae37d1f7bfebfdf041117ece61 100644 (file)
@@ -1,49 +1,10 @@
-<table class="table table-hover">
-  <thead>
-    <tr class="contain-align-left">
-      <th>
-       id
-      </th><th>
-       owner
-      </th><th>
-       name
-      </th><th>
-       key&nbsp;type
-      </th><th>
-       public&nbsp;key
-      </th><th>
-       expires
-      </th>
-    </tr>
-  </thead>
-  <tbody>
+<%= render partial: 'application/index' %>
 
-    <% @objects.sort_by { |ak| ak[:created_at] }.reverse.each do |ak| %>
+<hr />
 
-    <tr>
-      <td>
-        <%= link_to_if_arvados_object ak %>
-      </td><td>
-        <%= render_editable_attribute ak, 'owner' %>
-      </td><td>
-        <%= render_editable_attribute ak, 'name' %>
-      </td><td>
-        <%= render_editable_attribute ak, 'key_type' %>
-      </td><td>
-        <%= render_editable_attribute ak, 'public_key' %>
-      </td><td>
-        <%= render_editable_attribute ak, 'expires_at' %>
-      </td>
-    </tr>
-
-    <% end %>
-    <% if @objects.count == 0 %>
-    <tr>
-      <td colspan="6">
-        (no authorized keys)
-      </td>
-    </tr>
-    <% end %>
-
-  </tbody>
-</table>
+<p>
+  See also:
+  <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; SSH access'),
+  "#{Rails.configuration.arvados_docsite}/user/getting_started/ssh-access.html",
+  target: "_blank"%>.
+</p>