X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/74ac5edcb6ecff4003ec70cf904c900392a31814..e5152a25b9f9803522c15ff6397545f68d1d07a2:/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 dc43fe2527..9fdd32b733 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,14 +1,15 @@
+ <% if !defined? no_checkboxes or !no_checkboxes %>
@@ -16,6 +17,7 @@

+ <% end %> <% file_tree = @object.andand.files_tree %> <% if file_tree.nil? or file_tree.empty? %> @@ -41,6 +43,16 @@

<%= raw(human_readable_bytes_html(size)) %> + <% disable_search = (Rails.configuration.filename_suffixes_with_view_icon.include? file_path.split('.')[-1]) ? false : true %> + <%= link_to(raw(''), + link_params.merge(disposition: 'inline'), + {title: "View #{file_path}", class: "btn btn-info btn-sm", disabled: disable_search}) %> + <%= link_to(raw(''), + link_params.merge(disposition: 'attachment'), + {title: "Download #{file_path}", class: "btn btn-info btn-sm"}) %> +
+ +
<% if !defined? no_checkboxes or !no_checkboxes %> <%= check_box_tag 'uuids[]', "#{@object.uuid}/#{file_path}", false, { :class => 'persistent-selection', @@ -50,16 +62,10 @@ uuid: @object.portable_data_hash, file: file_path), :title => "Include #{file_path} in your selections", } %> +   <% end %> - <%= link_to(raw(''), - link_params.merge(disposition: 'inline'), - {title: "View #{file_path}", class: "btn btn-info btn-sm"}) %> - <%= link_to(raw(''), - link_params.merge(disposition: 'attachment'), - {title: "Download #{file_path}", class: "btn btn-info btn-sm"}) %> -
<% if CollectionsHelper::is_image(filename) %> -
<%= filename %>
+ <%= filename %>
<%= link_to(image_tag("#{url_for @object}/#{file_path}"), @@ -67,7 +73,7 @@ {title: file_path}) %>
<% else %> -
<%= filename %>
+ <%= filename %>
<% end %>