3605: Getting jobs/queue_size from API server works. Fixed server-side
[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 <b><%= link_to_if_arvados_object(pipeline, friendly_name: true) %></b>
11           <% if c.andand[:job].andand[:finished_at] %>
12             finished at <span class="utc-date"
13                                  data-utc-date="<%= c[:job][:finished_at] %>"><%= c[:job][:finished_at] %></span>
14           <% end %>
15           <br>
16         <% end %>
17       <% end %>
18     <% end %>
19   </p>
20 <% end %>
21
22 <% if @log_of.andand.any? %>
23   <p><i>This collection contains log messages from:</i><br />
24     <%= render_arvados_object_list_start(@log_of, 'Show all jobs',
25                                          jobs_path(filters: [['log', '=', @object.uuid]].to_json)) do |job| %>
26       <%= link_to_if_arvados_object(job, friendly_name: true) %><br />
27     <% end %>
28   </p>
29 <% end %>