1 <% content_for :css do %>
2 .file-list-inline-image {
8 <table class="table table-condensed table-fixedlayout">
21 <th style="text-align:right">size</th>
25 <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
26 <% file_path = CollectionsHelper::file_path file %>
29 <%= check_box_tag 'uuids[]', @object.uuid+'/'+file_path, false, {
30 :class => 'persistent-selection',
31 :friendly_type => "File",
32 :friendly_name => "#{@object.uuid}/#{file_path}",
33 :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}",
34 :title => "Click to add this item to your selection list"
42 <%= link_to (if CollectionsHelper::is_image file[1]
43 image_tag "#{url_for @object}/#{file_path}", class: "file-list-inline-image"
47 {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'},
51 <td style="text-align:right">
52 <%= raw(human_readable_bytes_html(file[2])) %>
56 <div style="display:inline-block">
57 <%= 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'} %>