X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3baf79475a93929350590d17a95b636408cd603e..6fb5d2bd10901a1e0ced4ea8849419145d47a0b5:/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb b/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb index ed5b2d086a..f7dc138162 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb @@ -5,17 +5,18 @@ <% end rescue nil %> <% end %> +<%= render partial: "paging", locals: {results: @objects, object: @object} %> + <%= form_tag do |f| %> - + + - - - + @@ -24,7 +25,7 @@ Status @@ -83,6 +73,8 @@ <% end %> +<%= render partial: "paging", locals: {results: @objects, object: @object} %> + <% content_for :footer_js do %> var showhide_compare = function() { var form = $('form#compare')[0];
Instance - + Template Owner @@ -41,12 +42,8 @@ <%= check_box_tag 'uuids[]', ob.uuid, false, :class => 'persistent-selection' %> - <% if ob.success %> - success - <% elsif ob.active %> - active - <% end %> - + <%= render partial: 'pipeline_status_label', locals: {:p => ob} %> + <%= link_to_if_arvados_object ob, friendly_name: true %> <%= link_to_if_arvados_object ob.pipeline_template_uuid, friendly_name: true %> @@ -61,18 +58,11 @@ <% ob.components.each do |cname, c| %> - <% status = if !(c.is_a?(Hash) && c[:job].is_a?(Hash)) - nil - elsif c[:job][:success] == true - 'success' - elsif c[:job][:success] == false - 'danger' - elsif c[:job][:running] == true - 'info' - else - 'warning' - end %> - <%= cname.to_s %> + <% if c[:job] %> + <%= render partial: "job_status_label", locals: {:j => c[:job], :title => cname.to_s } %> + <% else %> + <%= cname.to_s %> + <% end %> <% end %>