X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4ed794e2803ef9812dbc7ae938a8e17b3b9714c1..10176dd693120301ccc9695310c6ecbd7714cf79:/apps/workbench/app/views/work_units/_show_status.html.erb diff --git a/apps/workbench/app/views/work_units/_show_status.html.erb b/apps/workbench/app/views/work_units/_show_status.html.erb index 4b629c8783..b726f3b6b1 100644 --- a/apps/workbench/app/views/work_units/_show_status.html.erb +++ b/apps/workbench/app/views/work_units/_show_status.html.erb @@ -1,6 +1,27 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +<% + container_uuid = if @object.is_a?(Container) then @object.uuid elsif @object.is_a?(ContainerRequest) then @object.container_uuid end + if container_uuid + cols = ContainerRequest.columns.map(&:name) - %w(id updated_at mounts) + reqs = ContainerRequest.select(cols).where(requesting_container_uuid: container_uuid).results + load_preloaded_objects(reqs) + + child_cs = reqs.map(&:requesting_container_uuid).uniq + child_cs += reqs.map(&:container_uuid).uniq + preload_objects_for_dataclass(Container, child_cs) + + wu = current_obj.work_unit(name, child_objects=reqs) + else + wu = current_obj.work_unit(name) + end +%> +
>
<%= - render(partial: 'work_units/show_component', locals: {wu: current_obj.work_unit(name)}) + render(partial: 'work_units/show_component', locals: {wu: wu}) %>