Merge branch 'master' of git.clinicalfuture.com:arvados
[arvados.git] / apps / workbench / app / views / collections / _show_files.html.erb
1 <table class="table table-condensed table-fixedlayout">
2   <colgroup>
3     <col width="4%" />
4     <col width="35%" />
5     <col width="40%" />
6     <col width="15%" />
7     <col width="10%" />
8   </colgroup>
9   <thead>
10     <tr>
11       <th></th>
12       <th>path</th>
13       <th>file</th>
14       <th style="text-align:right">size</th>
15       <th>d/l</th>
16     </tr>
17   </thead><tbody>
18     <% if @object then @object.files.sort_by{|f|[f[0],f[1]]}.each do |file| %>
19     <% file_path = "#{file[0]}/#{file[1]}" %>
20     <tr>
21       <td>
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}" 
29       } %>
30       </td>
31       <td>
32         <%= file[0] %>
33       </td>
34
35       <td>
36         <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
37       </td>
38
39       <td style="text-align:right">
40         <%= raw(human_readable_bytes_html(file[2])) %>
41       </td>
42
43       <td>
44         <div style="display:inline-block">
45           <%= 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'} %>
46         </div>
47       </td>
48     </tr>
49     <% end; end %>
50   </tbody>
51 </table>