2872: Add free text search in chooser.
[arvados.git] / apps / workbench / app / views / pipeline_templates / _show_recent.html.erb
index dd8bad00e7192f0811baed10227b7d3a336e2424..f18f515ac3533388c3eda2bf43e400ca73036909 100644 (file)
@@ -1,14 +1,23 @@
-<table class="table table-hover">
+<%= render partial: "paging", locals: {results: @objects, object: @object} %>
+
+<table class="table table-condensed arv-index">
+  <colgroup>
+    <col width="8%" />
+    <col width="10%" />
+    <col width="22%" />
+    <col width="45%" />
+    <col width="15%" />
+  </colgroup>
   <thead>
     <tr class="contain-align-left">
       <th>
-       id
       </th><th>
-       name
       </th><th>
-       owner
+        name
+      </th><th>
+        description/components
       </th><th>
-       components
+        owner
       </th>
     </tr>
   </thead>
 
     <tr>
       <td>
-        <%= link_to_if_arvados_object ob %>
+        <%= form_tag '/pipeline_instances' do |f| %>
+          <%= hidden_field :pipeline_instance, :pipeline_template_uuid, :value => ob.uuid %>
+          <%= button_tag nil, {class: "btn btn-default btn-xs", title: "Run #{ob.name}"} do %>
+            Run <i class="fa fa-fw fa-play"></i>
+          <% end %>
+        <% end %>
+      </td>
+      <td>
+        <%= render :partial => "show_object_button", :locals => {object: ob, size: 'xs'} %>
       </td><td>
         <%= render_editable_attribute ob, 'name' %>
       </td><td>
-        <%= link_to_if_arvados_object ob.owner_uuid %>
+        <% if ob.respond_to?(:description) and ob.description %>
+          <%= ob.description %>
+          <br />
+        <% end %>
+        <% ob.components.collect { |k,v| k.to_s }.each do |k| %>
+          <span class="label label-default"><%= k %></span>
+        <% end %>
       </td><td>
-        <%= ob.components.collect { |k,v| k.to_s }.join(", ") %>
+        <%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %>
       </td>
     </tr>
 
@@ -32,3 +55,5 @@
 
   </tbody>
 </table>
+
+<%= render partial: "paging", locals: {results: @objects, object: @object} %>