X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e47a4660df55a7f45bcd3df5d4c041e13f194ac7..1ab33aed37fdcd448fe224375951089282901c48:/apps/workbench/app/views/collections/_show_files.html.erb diff --git a/apps/workbench/app/views/collections/_show_files.html.erb b/apps/workbench/app/views/collections/_show_files.html.erb index fc1ca58d2a..96ddf95b3c 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,3 +1,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% preview_selectable_container = '' preview_selectable = '' @@ -27,13 +31,16 @@ 'data-selection-action' => 'combine-collections', 'data-toggle' => 'dropdown' %> + <% if object.editable? %>
  • <%= link_to "Remove selected files", '#', method: :post, - 'data-href' => url_for(action: :remove_selected_files), + 'data-href' => url_for(controller: 'collections', action: :remove_selected_files), 'data-selection-param-name' => 'selection[]', 'data-selection-action' => 'remove-selected-files', - 'data-toggle' => 'dropdown' + 'data-toggle' => 'dropdown', + 'class' => 'btn-remove-selected-files' %>
  • + <% end %>
    @@ -94,15 +101,19 @@   <% end %> - <% if @object.editable? %> - <%= link_to({action: 'remove_selected_files', id: @object.uuid, selection: [object.portable_data_hash+'/'+file_path]}, method: :post, remote: true, data: {confirm: "Remove #{file_path}?", toggle: 'tooltip', placement: 'top'}, class: 'btn btn-sm btn-default btn-nodecorate', title: "Remove #{file_path}") do %> + <% if object.editable? %> + + <%= link_to({controller: 'collections', action: 'remove_selected_files', id: object.uuid, selection: [object.portable_data_hash+'/'+file_path]}, method: :post, remote: true, data: {confirm: "Remove #{file_path}?", toggle: 'tooltip', placement: 'top'}, class: 'btn btn-sm btn-default btn-nodecorate btn-collection-file-control', title: 'Remove this file') do %> <% end %> + <% end %> <% if CollectionsHelper::is_image(filename) %> - <% if @object.editable? %> - <%= render_editable_attribute @object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_path' => 'rename-file-path:'+file_path} %> + <% if object.editable? %> + + <%= render_editable_attribute object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_name' => 'rename-file-path:'+file_path}, {tiptitle: 'Edit name or directory or both for this file', btnclass: 'collection-file-control'} %> + <% else %> <%= filename %> <% end %> @@ -114,8 +125,9 @@
    <% else %> - <% if @object.editable? %> - <%= render_editable_attribute @object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_path' => 'rename-file-path:'+file_path} %> + <% if object.editable? %> + <%= render_editable_attribute object, 'filename', filename, {'data-value' => file_path, 'data-toggle' => 'manual', 'selection_name' => 'rename-file-path:'+file_path}, {tiptitle: 'Edit name or directory or both for this file', btnclass: 'collection-file-control'} %> + <% else %> <%= filename %> <% end %>