X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b91db14a4dced9d6ea124e86be3c796e6f2c8e8c..83561af02e156758b09ea771510ad4f9ee506b06:/apps/workbench/app/views/pipeline_templates/_show_components.html.erb diff --git a/apps/workbench/app/views/pipeline_templates/_show_components.html.erb b/apps/workbench/app/views/pipeline_templates/_show_components.html.erb index ef75b65a87..1f2c1baaf4 100644 --- a/apps/workbench/app/views/pipeline_templates/_show_components.html.erb +++ b/apps/workbench/app/views/pipeline_templates/_show_components.html.erb @@ -1,8 +1,18 @@ <% content_for :tab_line_buttons do %> - <%= form_tag '/pipeline_instances' do |f| %> - <%= hidden_field :pipeline_instance, :pipeline_template_uuid, :value => @object.uuid %> - <%= button_tag "Create pipeline", {class: 'btn btn-primary pull-right', id: "run-pipeline-button"} %> -<% 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]' => @object.uuid, + 'success' => 'redirect-to-created-object' + }.to_json), + { class: "btn btn-primary btn-sm", remote: true, method: 'get' } + ) do %> + Run this pipeline + <% end %> <% end %> -<%= render partial: 'pipeline_instances/show_components_editable', locals: {editable: false} %> +<%= render_pipeline_components("editable", :json, editable: false) %>