X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9e24edb1d9624b6aed38464c70cab5027586abbc..18b51b1ff1f40f1c0467f1960b329c7bc317322d:/apps/workbench/app/views/projects/_show_jobs_and_pipelines.html.erb diff --git a/apps/workbench/app/views/projects/_show_jobs_and_pipelines.html.erb b/apps/workbench/app/views/projects/_show_jobs_and_pipelines.html.erb index 619e51b077..f9e6306a9d 100644 --- a/apps/workbench/app/views/projects/_show_jobs_and_pipelines.html.erb +++ b/apps/workbench/app/views/projects/_show_jobs_and_pipelines.html.erb @@ -1 +1,8 @@ -<%= render partial: 'show_tab_contents', locals: {project: @object, objects_and_names: @objects_and_names, data_kind: ['arvados#job', 'arvados#pipelineInstance']} %> +<% + filters = [['uuid', 'is_a', ["arvados#pipelineInstance","arvados#job"]]] + @objects = @object.contents({limit: 50, include_linked: true, :filters => filters}) + objects_and_names = get_objects_and_names @objects + page_offset = next_page_offset @objects +%> + +<%= render partial: 'show_tab_contents', locals: {project: @object, objects_and_names: objects_and_names, filters: filters, page_offset: page_offset, tab_name: 'Jobs_and_pipelines'} %>