Merge branch 'master' into 2596-refactor-pipeline-create
[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       <% f0 = file[0] %>
20       <% f0 = '' if f0 == '.' %>
21       <% f0 = f0[2..-1] if f0[0..1] == './' %>
22       <% f0 += '/' if not f0.empty? %>
23       <% file_path = "#{f0}#{file[1]}" %>
24       <tr>
25         <td>
26           <%= check_box_tag 'uuids[]', @object.uuid+'/'+file_path, false, {
27                 :class => 'persistent-selection',
28                 :friendly_type => "File",
29                 :friendly_name => "#{@object.uuid}/#{file_path}",
30                 :href => "#{url_for controller: 'collections', action: 'show', id: @object.uuid }/#{file_path}",
31                 :title => "Click to add this item to your selection list"
32               } %>
33         </td>
34         <td>
35           <%= file[0] %>
36         </td>
37
38         <td>
39           <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
40         </td>
41
42         <td style="text-align:right">
43           <%= raw(human_readable_bytes_html(file[2])) %>
44         </td>
45
46         <td>
47           <div style="display:inline-block">
48             <%= 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'} %>
49           </div>
50         </td>
51       </tr>
52     <% end; end %>
53   </tbody>
54 </table>