Advertise filters param in discovery doc.
[arvados.git] / apps / workbench / app / views / pipeline_templates / _show_recent.html.erb
1 <table class="table table-hover">
2   <thead>
3     <tr class="contain-align-left">
4       <th>
5         id
6       </th><th>
7         name
8       </th><th>
9         owner
10       </th><th>
11         components
12       </th>
13     </tr>
14   </thead>
15   <tbody>
16
17     <% @objects.sort_by { |ob| ob[:created_at] }.reverse.each do |ob| %>
18
19     <tr>
20       <td>
21         <%= link_to_if_arvados_object ob %>
22       </td><td>
23         <%= render_editable_attribute ob, 'name' %>
24       </td><td>
25         <%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %>
26       </td><td>
27         <%= ob.components.collect { |k,v| k.to_s }.join(", ") %>
28       </td>
29     </tr>
30
31     <% end %>
32
33   </tbody>
34 </table>