1 <% content_for :css do %>
4 background: rgb(91, 192, 222);
10 background: rgb(57, 179, 215);
14 <%= render partial: "paging", locals: {results: @objects, object: @object} %>
16 <table class="table table-hover">
18 <tr class="contain-align-left">
33 <% @objects.sort_by { |ob| ob[:created_at] }.reverse.each do |ob| %>
37 <%= form_tag '/pipeline_instances' do |f| %>
38 <%= hidden_field :pipeline_instance, :pipeline_template_uuid, :value => ob.uuid %>
39 <%= button_tag nil, {class: 'playbutton', title: "Run #{ob.name}"} do %>
40 <span class="glyphicon glyphicon-play"></span>
45 <%= link_to_if_arvados_object ob %>
47 <%= render_editable_attribute ob, 'name' %>
49 <%= link_to_if_arvados_object ob.owner_uuid, friendly_name: true %>
51 <%= ob.components.collect { |k,v| k.to_s }.join(", ") %>
60 <%= render partial: "paging", locals: {results: @objects, object: @object} %>