X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/289e5d15402d12ad02ac77e911aca7a32746c905..0a78f5a0efe0c88fddcd2ee91065f2a8da79055a:/apps/workbench/app/views/collections/_show_source_summary.html.erb diff --git a/apps/workbench/app/views/collections/_show_source_summary.html.erb b/apps/workbench/app/views/collections/_show_source_summary.html.erb index e3f29952ff..592e802fa1 100644 --- a/apps/workbench/app/views/collections/_show_source_summary.html.erb +++ b/apps/workbench/app/views/collections/_show_source_summary.html.erb @@ -4,9 +4,16 @@ <% if @output_of.andand.any? %>

This collection was the output of:
- <%= render_arvados_object_list_start(@output_of, 'Show all jobs', - jobs_path(filters: [['output', '=', @object.uuid]].to_json)) do |job| %> - <%= link_to_if_arvados_object(job, friendly_name: true) %>
+ <% pipelines = PipelineInstance.filter([["components", "like", "%#{@object.uuid}%"]]).each do |pipeline| %> + <% pipeline.components.each do |cname, c| %> + <% if c[:output_uuid] == @object.uuid %> + <%= cname %> component of <%= link_to_if_arvados_object(pipeline, friendly_name: true) %> + <% if c.andand[:job].andand[:finished_at] %> + finished at <%= render_localized_date(c[:job][:finished_at]) %> + <% end %> +
+ <% end %> + <% end %> <% end %>

<% end %>