%# Copyright (C) The Arvados Authors. All rights reserved.
SPDX-License-Identifier: AGPL-3.0 %>
<% @objects.each do |object| %>
<% if object.respond_to? :name %>
<% if not (object.name.nil? or object.name.empty?) %>
<%= object.name %>
<% elsif object.is_a? Collection and object.files.length > 0 %>
<%= object.files[0][1] %>
<%= "+ #{object.files.length-1} more" if object.files.length > 1 %>
<% else %>
<%= object.uuid %>
<% end %>
<% else %>
<%= object.uuid %>
<% end %>
<% links_for_object(object).each do |tag| %>
<% if tag.link_class == 'tag' %>
<%= tag.name %>
<% end %>
<% end %>
<% end %>