X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a59152e34814f453a7380e68a55534e2f8922d57..df9e166a5ffc4aa79658bec1a5d552a3b413f0d8:/apps/workbench/app/views/pipeline_templates/show.html.erb diff --git a/apps/workbench/app/views/pipeline_templates/show.html.erb b/apps/workbench/app/views/pipeline_templates/show.html.erb index 6af7f4eb62..b4264e5ef2 100644 --- a/apps/workbench/app/views/pipeline_templates/show.html.erb +++ b/apps/workbench/app/views/pipeline_templates/show.html.erb @@ -1,42 +1,25 @@ - - - - - <% @object.attributes_for_display.each do |attr, attrvalue| %> - <% if attr == 'components' and attrvalue.is_a? Hash and attrvalue[:steps].is_a? Array %> - - - - <% else %> - <%= render partial: 'application/orvos_object_attr', locals: { attr: attr, attrvalue: attrvalue } %> +<% if @object.editable? %> + <% content_for :tab_line_buttons do %> + <%= link_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, + 'pipeline_instance[description]' => "Created at #{Time.now.localtime}" + (@object.name.andand.size.andand>0 ? " using the pipeline template *#{@object.name}*" : ""), + 'success' => 'redirect-to-created-object', + }.to_json), { + class: "btn btn-primary btn-sm", + remote: true, + title: 'Run this pipeline' + }) do %> + Run this pipeline <% end %> - <% end %> - -
components[steps] - - <% attrvalue[:steps].each_with_index do |s, i| %> - - - <% %w(name function min_revision max_steps_per_node params).each do |key| %> - - <% end %> - - <% end %> -
<%= i %> - <% if key == 'params' %> - <% s[key.to_sym].each do |p| %> - <%= p[:name] %> - <% if p[:data_locator] || p[:value] %> - ← <%= p[:data_locator] || p[:value] %> - <% end %> - <%= '(optional)' if p[:optional] %> -
- <% end %> - <% else %> - <%= s[key.to_sym] %> - <% end %> -
-
-
-<%= JSON.pretty_generate(@object.attributes) rescue nil %>
-
+ <% end %> +<% end %> + +<%= render file: 'application/show.html.erb', locals: local_assigns %>