X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/52bf3c0924da239488fff3ed9907c3478ee44e6b..060d38d627bd1e51dd2b3c6e7de9af6aa7d7b6f3:/apps/workbench/app/views/application/_selection_checkbox.html.erb diff --git a/apps/workbench/app/views/application/_selection_checkbox.html.erb b/apps/workbench/app/views/application/_selection_checkbox.html.erb index 9645455ace..af65a6d982 100644 --- a/apps/workbench/app/views/application/_selection_checkbox.html.erb +++ b/apps/workbench/app/views/application/_selection_checkbox.html.erb @@ -1,5 +1,9 @@ -<%if object and object.class.goes_in_folders? %> - <% fn = if defined? friendly_name +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +<%if object and object.uuid and (object.class.goes_in_projects? or (object.is_a?(Link) and ArvadosBase::resource_class_for_uuid(object.head_uuid).to_s == 'Collection')) %> + <% fn = if defined? friendly_name and not friendly_name.nil? friendly_name else link_to_if_arvados_object object, {no_link: true} @@ -11,6 +15,7 @@ fn = String.new fn %> <%= check_box_tag 'uuids[]', object.uuid, false, { :class => 'persistent-selection', + :id => object.uuid, :friendly_type => object.class.name, :friendly_name => fn, :href => "#{url_for controller: object.class.name.tableize, action: 'show', id: object.uuid }",