]> git.arvados.org - arvados.git/blob - apps/workbench/app/views/application/_pipeline_progress.html.erb
2872: Fix up pipeline instance table, show "resume" button if paused.
[arvados.git] / apps / workbench / app / views / application / _pipeline_progress.html.erb
1 <% component_frac = 1.0 / p.components.length %>
2 <div class="progress">
3   <% p.components.each do |k,c| %>
4     <% if c[:job] %>
5       <%= render partial: "job_progress", locals: {:j => c[:job], :scaleby => component_frac } %>
6     <% end %>
7   <% end %>
8 </div>