X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d843787b4ece9952597d7814cbf10fb383c72625..ef15d01d2cb3c988185edd2b891d2b227fb33f3b:/apps/workbench/app/views/collections/_show_files.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/collections/_show_files.html.erb b/apps/workbench/app/views/collections/_show_files.html.erb index 8dcef33bf2..7c7777d472 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,13 +1,3 @@ - - <% preview_selectable_container = '' preview_selectable = '' @@ -19,6 +9,8 @@ function unselect_all_files() { end %> +<% object = @object unless object %> +
<% if Collection.creatable? and (!defined? no_checkboxes or !no_checkboxes) %>
@@ -29,17 +21,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 +51,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 %>