X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d9561b0197cba4a9a0f70929eb03c892df5c4543..42c20b25e1325124b88e3b9b285544dc41122b56:/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 8dcef33bf2..96ddf95b3c 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,12 +1,6 @@ - +SPDX-License-Identifier: AGPL-3.0 %> <% preview_selectable_container = '' @@ -19,6 +13,8 @@ function unselect_all_files() { end %> +<% object = @object unless object %> +
<% if Collection.creatable? and (!defined? no_checkboxes or !no_checkboxes) %>
@@ -29,17 +25,27 @@ function unselect_all_files() {
  • <%= link_to "Create new collection with selected files", '#', method: :post, 'data-href' => combine_selected_path( - action_data: {current_project_uuid: @object.owner_uuid}.to_json + action_data: {current_project_uuid: object.owner_uuid}.to_json ), 'data-selection-param-name' => 'selection[]', 'data-selection-action' => 'combine-collections', 'data-toggle' => 'dropdown' %>
  • + <% if object.editable? %> +
  • <%= link_to "Remove selected files", '#', + method: :post, + 'data-href' => url_for(controller: 'collections', action: :remove_selected_files), + 'data-selection-param-name' => 'selection[]', + 'data-selection-action' => 'remove-selected-files', + 'data-toggle' => 'dropdown', + 'class' => 'btn-remove-selected-files' + %>
  • + <% end %>
    - - + +
    @@ -49,11 +55,11 @@ function unselect_all_files() {

    <% end %> - <% file_tree = @object.andand.files_tree %> + <% file_tree = object.andand.files_tree %> <% if file_tree.nil? or file_tree.empty? %>

    This collection is empty.

    <% else %> -
    <% end %>