X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ed413bb7071fe0d58a98828e89be21fef5681200..e20590d485505f58f7745d74a311ca539c9be940:/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 51f9348450..398742e740 100644 --- a/apps/workbench/app/views/collections/_show_source_summary.html.erb +++ b/apps/workbench/app/views/collections/_show_source_summary.html.erb @@ -1,16 +1,30 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +

Content size:
+ <%= pluralize(@object.manifest.files_count, "file") %> totalling + <%= raw(human_readable_bytes_html(@object.manifest.files_size)) %>

+ <% if not (@output_of.andand.any? or @log_of.andand.any?) %>

No source information available.

<% end %> <% if @output_of.andand.any? %> -

This collection was the output of:
- <% pipelines = PipelineInstance.filter([["components", "like", "%#{@object.uuid}%"]]).each do |pipeline| %> + <% pipelines = PipelineInstance.limit(5).filter([["components", "like", "%#{@object.uuid}%"]]) %> + <% + message = "This collection was the output of the following:" + if pipelines.items_available > pipelines.results.size + message += ' (' + (pipelines.items_available - pipelines.results.size).to_s + ' more results are not shown)' + end + %> +

<%= message %>
+ <% pipelines.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 <%= c[:job][:finished_at] %> + finished at <%= render_localized_date(c[:job][:finished_at]) %> <% end %>
<% end %> @@ -22,7 +36,7 @@ <% if @log_of.andand.any? %>

This collection contains log messages from:
<%= render_arvados_object_list_start(@log_of, 'Show all jobs', - jobs_path(filters: [['log', '=', @object.uuid]].to_json)) do |job| %> + jobs_path(filters: [['log', '=', @object.portable_data_hash]].to_json)) do |job| %> <%= link_to_if_arvados_object(job, friendly_name: true) %>
<% end %>