X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/43c411ec1441ee1710dc33389d7451f7414a170f..67182ab96a8dda99ffa897a2fb04d361cd73777d:/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 097347bd73..57129dfe96 100644 --- a/apps/workbench/app/views/pipeline_templates/show.html.erb +++ b/apps/workbench/app/views/pipeline_templates/show.html.erb @@ -1,42 +1,19 @@ - - - - - <% @object.attributes_for_display.each do |attr, attrvalue| %> - <% if attr == 'components' and attrvalue.is_a? Hash and attrvalue[:steps].is_a? Array %> +<% 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, method: 'get' } + ) do %> + Run this pipeline + <% end %> +<% end %> - - - <% else %> - <%= render partial: 'application/arvados_object_attr', locals: { attr: attr, attrvalue: attrvalue } %> - <% 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 %>
-
+<%= render file: 'application/show.html.erb', locals: local_assigns %>