X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/87dc5129e903cb7452e06c936d8e5e581c4d2481..1b452d6b3903bac1ccd71b2bb2d9884ae1274f44:/apps/workbench/app/views/users/_tables.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/users/_tables.html.erb b/apps/workbench/app/views/users/_tables.html.erb index 09a83f2121..ebb52019a9 100644 --- a/apps/workbench/app/views/users/_tables.html.erb +++ b/apps/workbench/app/views/users/_tables.html.erb @@ -20,22 +20,35 @@ Script Output Log - Age + Created at Status Progress - <% - job_outputs = [] - job_logs = [] + <%# Preload collections, logs, and pipeline instance objects %> + <% + collection_uuids = [] + log_uuids = [] @my_jobs[0..6].each do |j| - job_outputs << j.output - job_logs << j.log + collection_uuids << j.output + log_uuids << j.log end - preload_collections_for_objects job_outputs - preload_log_collections_for_objects job_logs + @my_collections[0..6].each do |c| + collection_uuids << c.uuid + end + + preload_collections_for_objects collection_uuids + preload_log_collections_for_objects log_uuids + + pi_uuids = [] + @my_pipelines[0..6].each do |p| + pi_uuids << p.uuid + end + resource_class = resource_class_for_uuid(pi_uuids.first, friendly_name: true) + preload_objects_for_dataclass resource_class, pi_uuids %> + <% @my_jobs[0..6].each do |j| %> @@ -79,7 +92,7 @@ - <%= raw(distance_of_time_in_words(j.created_at, Time.now).sub('about ','~').sub(' ',' ')) if j.created_at %> + <%= j.created_at.to_s if j.created_at %> @@ -117,21 +130,11 @@ Instance Template - Age + Created at Status Progress - <% - pi_uuids = [] - @my_pipelines[0..6].each do |p| - pi_uuids << p.uuid - end - - resource_class = resource_class_for_uuid(pi_uuids.first, friendly_name: true) - preload_objects_for_dataclass resource_class, pi_uuids - %> - <% @my_pipelines[0..6].each do |p| %> @@ -148,7 +151,7 @@ - <%= raw(distance_of_time_in_words(p.created_at, Time.now).sub('about ','~').sub(' ',' ')) if p.created_at %> + <%= (p.created_at.to_s) if p.created_at %> @@ -223,7 +226,7 @@ - <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %> + <%= c.created_at.to_s if c.created_at %>