4084: Split out behavior of updating job subscribe list to
[arvados.git] / apps / workbench / app / views / jobs / _show_job_component.html.erb
1 <% pj = {} %>
2 <% pj[:job] = @object %>
3 <% pj[:name] = @object[:name] || "this job" %>
4 <% pj[:progress_bar] = render(partial: "job_progress", locals: {:j => @object }) %>
5 <% tasks = JobTask.filter([['job_uuid', '=', @object.uuid]]).results %>
6 <%= render partial: 'pipeline_instances/running_component', locals: {tasks: tasks, pj: pj, i: 0, expanded: true} %>