4363: Merge branch 'master' into 4363-less-filename-munging
[arvados.git] / apps / workbench / app / views / collections / _show_source_summary.html.erb
index e3f29952ff29fe58c62bf173ab3a982f7ac2c904..592e802fa12c989205a3fa00fd38bff4ef8571bf 100644 (file)
@@ -4,9 +4,16 @@
 
 <% if @output_of.andand.any? %>
   <p><i>This collection was the output of:</i><br />
-    <%= 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) %><br />
+    <% pipelines = PipelineInstance.filter([["components", "like", "%#{@object.uuid}%"]]).each do |pipeline| %>
+      <% pipeline.components.each do |cname, c| %>
+        <% if c[:output_uuid] == @object.uuid %>
+          <b><%= cname %></b> component of <b><%= link_to_if_arvados_object(pipeline, friendly_name: true) %></b>
+          <% if c.andand[:job].andand[:finished_at] %>
+            finished at <%= render_localized_date(c[:job][:finished_at]) %>
+          <% end %>
+          <br>
+        <% end %>
+      <% end %>
     <% end %>
   </p>
 <% end %>