X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e4f96fc61cd9c85f91bdb0020bc365f2f4825ffb..747efcd9371118c2db9c265c13ce399fc4b6c96b:/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 342a74331e..f18f515ac3 100644 --- a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb +++ b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb @@ -1,28 +1,23 @@ -<% content_for :css do %> - .playbutton { - color: white; - background: rgb(91, 192, 222); - border: 0px; - border-radius: 3px; - padding: 0px 3px; - } - .playbutton:hover { - background: rgb(57, 179, 215); - } -<% end %> +<%= render partial: "paging", locals: {results: @objects, object: @object} %> - +
+ + + + + + + @@ -34,19 +29,25 @@ @@ -54,3 +55,5 @@
- id - name + name - owner + description/components - components + owner
<%= form_tag '/pipeline_instances' do |f| %> <%= hidden_field :pipeline_instance, :pipeline_template_uuid, :value => ob.uuid %> - <%= button_tag nil, {class: 'playbutton', title: "Run #{ob.name}"} do %> - + <%= button_tag nil, {class: "btn btn-default btn-xs", title: "Run #{ob.name}"} do %> + Run <% end %> <% end %> - <%= link_to_if_arvados_object ob %> + <%= render :partial => "show_object_button", :locals => {object: ob, size: 'xs'} %> <%= render_editable_attribute ob, 'name' %> - <%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %> + <% 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} %>