<%= 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', id: @object.uuid }/#{file_path}"
} %>
|
<%= file[0] %>
|
<%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
|
<%= raw(human_readable_bytes_html(file[2])) %>
|
<%= link_to raw(''), {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'attachment'}, {class: 'btn btn-info btn-sm', title: 'Download'} %>
|
<% end; end %>