Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / pipeline_templates / _show_recent.html.erb
index 342a74331e567f9bc7fd7a7e7f1380b5b87161de..c708c1f8813c897fed46faea31621d27302ba86e 100644 (file)
@@ -1,28 +1,27 @@
-<% content_for :css do %>
-  .playbutton {
-  color: white;
-  background: rgb(91, 192, 222);
-  border: 0px;
-  border-radius: 3px;
-  padding: 0px 3px;  
-  }
-  .playbutton:hover {
-  background: rgb(57, 179, 215);
-  }
-<% end %>
-
-<table class="table table-hover">
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
+<%= 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>
       </th><th>
-       id
       </th><th>
-       name
+        name
       </th><th>
-       owner
+        description/components
       </th><th>
-       components
+        owner
       </th>
     </tr>
   </thead>
 
     <tr>
       <td>
-        <%= form_tag '/pipeline_instances' do |f| %>
-          <%= hidden_field :pipeline_instance, :pipeline_template_uuid, :value => ob.uuid %>
-          <%= button_tag nil, {class: 'playbutton', title: "Run #{ob.name}"} do %>
-            <span class="glyphicon glyphicon-play"></span>
-          <% end %>
-        <% end %>
+        <%= button_to(choose_projects_path(id: "run-pipeline-button",
+                                     title: 'Choose project',
+                                     editable: true,
+                                     action_name: 'Choose',
+                                     action_href: pipeline_instances_path,
+                                     action_method: 'post',
+                                     action_data: {selection_param: 'pipeline_instance[owner_uuid]',
+                                                   'pipeline_instance[pipeline_template_uuid]' => ob.uuid,
+                                                   'pipeline_instance[description]' => "Created at #{Time.now.localtime}" + (ob.name.andand.size.andand>0 ? " using the pipeline template *#{ob.name}*" : ""),
+                                                   'success' => 'redirect-to-created-object'
+                                                  }.to_json),
+                { class: "btn btn-default btn-xs", title: "Run #{ob.name}", remote: true, method: :get }
+            ) do %>
+               <i class="fa fa-fw fa-play"></i> Run
+              <% end %>
       </td>
       <td>
-        <%= link_to_if_arvados_object ob %>
+        <%= 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, friendly_name: true %>
+        <% if ob.respond_to?(:description) and ob.description %>
+          <%= render_attribute_as_textile(ob, "description", ob.description, false) %>
+          <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>
 
@@ -54,3 +68,5 @@
 
   </tbody>
 </table>
+
+<%= render partial: "paging", locals: {results: @objects, object: @object} %>