3342: Fixing outputs
[arvados.git] / apps / workbench / app / views / collections / _show_source_summary.html.erb
1 <% if not (@output_of.andand.any? or @log_of.andand.any?) %>
2   <p><i>No source information available.</i></p>
3 <% end %>
4
5 <% if @output_of.andand.any? %>
6   <p><i>This collection was the output of:</i><br />
7     <% pipelines = PipelineInstance.filter([["components", "like", "%#{@object.uuid}%"]]).each do |pipeline| %>
8       <% pipeline.components.each do |cname, c| %>
9         <% if c[:output_uuid] == @object.uuid %>
10           <b><%= cname %></b> component of pipeline <b><%= link_to_if_arvados_object(pipeline, friendly_name: true) %></b> finished at <%= c[:job][:finished_at] %>
11         <% end %>
12       <% end %>
13     <% end %>
14   </p>
15 <% end %>
16
17 <% if @log_of.andand.any? %>
18   <p><i>This collection contains log messages from:</i><br />
19     <%= render_arvados_object_list_start(@log_of, 'Show all jobs',
20                                          jobs_path(filters: [['log', '=', @object.uuid]].to_json)) do |job| %>
21       <%= link_to_if_arvados_object(job, friendly_name: true) %><br />
22     <% end %>
23   </p>
24 <% end %>