<% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %> <% file_path = "#{file[0]}/#{file[1]}" %> <% end; end %>
path file size d/l
<%= file[0] %> <%= link_to((if /\.(jpg|jpeg|gif|png)$/.match(file[1]) then image_tag "#{url_for @object}/#{file_path}" else file[1] end), {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'} %>