projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 5645-open-graph-meta-tags
[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.is_a?(Hash) and c[:job] %>
5
<%= render partial: "job_progress", locals: {:j => c[:job], :scaleby => component_frac } %>
6
<% end %>
7
<% end %>
8
</div>