X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/da51b9328abab2df757ed13eadc7c3557315094b..45f25c3c3db844e2fa54d0d8761607ecc4304149:/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb 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 dd8bad00e7..4c92643ec2 100644 --- a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb +++ b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb @@ -1,14 +1,23 @@ - +<%= render partial: "paging", locals: {results: @objects, object: @object} %> + +
+ + + + + + + @@ -18,13 +27,36 @@ + @@ -32,3 +64,5 @@
- id - name - owner + name + + description/components - components + owner
- <%= link_to_if_arvados_object ob %> + <%= 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>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' %> - <%= link_to_if_arvados_object ob.owner_uuid %> + <% if ob.respond_to?(:description) and ob.description %> + <%= ob.description %> +
+ <% end %> + <% ob.components.collect { |k,v| k.to_s }.each do |k| %> + <%= k %> + <% end %>
- <%= ob.components.collect { |k,v| k.to_s }.join(", ") %> + <%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %>
+ +<%= render partial: "paging", locals: {results: @objects, object: @object} %>