X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ebb166d65eb37f89edeccfc5be97014f3f2a73e2..ef2572886ea8693f16316cbfe537053f106a2bb5:/apps/workbench/app/views/application/_pipeline_status_label.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/application/_pipeline_status_label.html.erb b/apps/workbench/app/views/application/_pipeline_status_label.html.erb index f68d547aa5..88722726dc 100644 --- a/apps/workbench/app/views/application/_pipeline_status_label.html.erb +++ b/apps/workbench/app/views/application/_pipeline_status_label.html.erb @@ -1,11 +1,13 @@ <% if p.state == 'Complete' %> - finished + complete <% elsif p.state == 'Failed' %> failed <% elsif p.state == 'RunningOnServer' || p.state == 'RunningOnClient' %> running +<% elsif p.state == 'Paused' %> + paused <% else %> - <% if (p.components.select do |k,v| v[:job] end).length == 0 %> + <% if not p.components.values.any? { |c| c[:job] rescue false } %> not started <% else %> not running