1 <table class="table table-condensed table-fixedlayout">
14 <th style="text-align:right">size</th>
18 <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
19 <% file_path = "#{file[0]}/#{file[1]}" %>
22 <% fp2 = file_path[2..-1] if file_path[0..1] == './' %>
23 <% fp2 ||= file_path %>
24 <%= check_box_tag 'uuids[]', @object.uuid+file_path, false, {
25 :class => 'persistent-selection',
26 :friendly_type => "File",
27 :friendly_name => "#{@object.uuid}/#{fp2}",
28 :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}"
36 <%= link_to((if /\.(jpg|jpeg|gif|png)$/.match(file[1]) then
37 image_tag "#{url_for @object}/#{file_path}"
41 {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'},
42 {title: 'View in browser'}) %>
45 <td style="text-align:right">
46 <%= raw(human_readable_bytes_html(file[2])) %>
50 <div style="display:inline-block">
51 <%= link_to raw('<i class="glyphicon glyphicon-download-alt"></i>'), {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'attachment'}, {class: 'btn btn-info btn-sm', title: 'Download'} %>