<%= 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 or
(!params['use_checkbox_selection'].nil? and params['use_checkbox_selection'] == 'true') %>
<%= check_box_tag 'uuids[]', "#{@object.uuid}/#{file_path}", false, {
:class => 'persistent-selection',
:friendly_type => "File",
:friendly_name => "#{@object.uuid}/#{file_path}",
:href => url_for(controller: 'collections', action: 'show_file',
uuid: @object.portable_data_hash, file: file_path),
:title => "Include #{file_path} in your selections",
} %>
<% end %>
<% if CollectionsHelper::is_image(filename) %>
<%= filename %>
<%= link_to(image_tag("#{url_for @object}/#{file_path}"),
link_params.merge(disposition: 'inline'),
{title: file_path}) %>
<% else %>