1 <% if @object.editable? %>
2 <% content_for :tab_line_buttons do %>
3 <%= link_to(choose_projects_path(
4 id: "run-pipeline-button",
5 title: 'Choose project',
8 action_href: pipeline_instances_path,
11 'selection_param' => 'pipeline_instance[owner_uuid]',
12 'pipeline_instance[pipeline_template_uuid]' => @object.uuid,
13 'pipeline_instance[description]' => "Created at #{Time.now.localtime}" + (@object.name.andand.size.andand>0 ? " using the pipeline template *#{@object.name}*" : ""),
14 'success' => 'redirect-to-created-object',
16 class: "btn btn-primary btn-sm",
18 title: 'Run this pipeline'
20 <i class="fa fa-gear"></i> Run this pipeline
25 <%= render file: 'application/show.html.erb', locals: local_assigns %>