Merge branch 'master' of git.curoverse.com:arvados into 2612-workbench-displays-user...
[arvados.git] / apps / workbench / app / views / collections / _show_files.html.erb
1 <% content_for :css do %>
2 .file-list-inline-image {
3   width: 50%;
4   height: auto;
5 }
6 <% end %>
7
8 <table class="table table-condensed table-fixedlayout">
9   <colgroup>
10     <col width="4%" />
11     <col width="35%" />
12     <col width="40%" />
13     <col width="15%" />
14     <col width="10%" />
15   </colgroup>
16   <thead>
17     <tr>
18       <th></th>
19       <th>path</th>
20       <th>file</th>
21       <th style="text-align:right">size</th>
22       <th>d/l</th>
23     </tr>
24   </thead><tbody>
25     <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
26       <% file_path = CollectionsHelper::file_path file %>
27       <tr>
28         <td>
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"
35               } %>
36         </td>
37         <td>
38           <%= file[0] %>
39         </td>
40
41       <td>
42         <%= link_to (if CollectionsHelper::is_image file[1]
43                        image_tag "#{url_for @object}/#{file_path}", class: "file-list-inline-image"
44                      else
45                        file[1]
46                      end),
47             {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'},
48             {title: file_path} %>
49       </td>
50
51         <td style="text-align:right">
52           <%= raw(human_readable_bytes_html(file[2])) %>
53         </td>
54
55         <td>
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'} %>
58           </div>
59         </td>
60       </tr>
61     <% end; end %>
62   </tbody>
63 </table>