X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f36fe36bd5e64b55b8699fae187c6accb678db2b..1ab33aed37fdcd448fe224375951089282901c48:/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb index 9b637d506a..c708c1f881 100644 --- a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb +++ b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb @@ -1,3 +1,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <%= render partial: "paging", locals: {results: @objects, object: @object} %> @@ -15,7 +19,7 @@ @@ -27,19 +31,34 @@
name - components + description/components owner
- <%= 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 - <% 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 %> + Run + <% end %> <%= render :partial => "show_object_button", :locals => {object: ob, size: 'xs'} %> <%= render_editable_attribute ob, 'name' %> - <%= ob.components.collect { |k,v| k.to_s }.join(", ") %> + <% if ob.respond_to?(:description) and ob.description %> + <%= render_attribute_as_textile(ob, "description", ob.description, false) %> +
+ <% end %> + <% ob.components.collect { |k,v| k.to_s }.each do |k| %> + <%= k %> + <% end %>
<%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %>