X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1cfe69550c0cf25bc9dd8d2fc1468906f2b7e0e1..6b3cfe60beb46ba087de5093926363d8b03ab889:/apps/workbench/app/views/collections/_index_tbody.html.erb diff --git a/apps/workbench/app/views/collections/_index_tbody.html.erb b/apps/workbench/app/views/collections/_index_tbody.html.erb index ec5a09e3c6..845c92e802 100644 --- a/apps/workbench/app/views/collections/_index_tbody.html.erb +++ b/apps/workbench/app/views/collections/_index_tbody.html.erb @@ -1,12 +1,21 @@ -<% @collections.each do |c| %> +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + +<% @objects.each do |c| %> - <% friendly_name = c.friendly_link_name %> - <% @collection_info[c.uuid][:tag_links].each do |tag_link| %> - <% friendly_name += raw(" #{tag_link.name}") %> - <% end %> - <%= render :partial => "selection_checkbox", :locals => {:object => c, :friendly_name => friendly_name} %> + <%= + friendly_name = c.friendly_link_name + @collection_info[c.uuid][:tag_links].each do |tag_link| + friendly_name += raw(" #{tag_link.name}") + end + render partial: "selection_checkbox", locals: { + object: c, + friendly_name: friendly_name + } + %> <%= render :partial => "show_object_button", :locals => {object: c, size: 'xs'} %> @@ -28,17 +37,13 @@ <%= c.created_at.to_s if c.created_at %> - - <% current_state = @collection_info[c.uuid][:wanted_by_me] ? 'persistent' : 'cache' %> - <%= render partial: 'toggle_persist', locals: { uuid: c.uuid, current_state: current_state } %> -  Add <% if @collection_info[c.uuid] %> <% @collection_info[c.uuid][:tag_links].each do |tag_link| %> <%= tag_link.name %> - <% if tag_link.owner_uuid == current_user.uuid %> + <% if tag_link.owner_uuid == current_user.andand.uuid %>   <% end %>