Frontend feature to add items to locally-stored selection list that is session-persis...
[arvados.git] / apps / workbench / app / views / collections / _index_tbody.html.erb
1 <% @collections.each do |c| %>
2
3 <tr class="collection">
4   <td>
5     <%= render :partial => "selection_checkbox", :locals => {:object => c} %>
6   </td>
7   <td>
8     <%= link_to_if_arvados_object c.uuid %>
9   </td>
10   <td>
11     <% i = 0 %>
12     <% while i < 3 and i < c.files.length %>
13       <% file = c.files[i] %>
14       <% file_path = "#{file[0]}/#{file[1]}" %>
15       <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: c.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %><br />
16       <% i += 1 %>
17     <% end %>
18     <% if i < c.files.length %>
19       &vellip;
20     <% end %>
21   </td>
22   <td><%= link_to_if_arvados_object c.owner_uuid, friendly_name: true %></td>
23   <td>
24     <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ','&nbsp;')) if c.created_at %>
25   </td>
26   <td>
27     <% if @collection_info[c.uuid] %>
28       <%= @collection_info[c.uuid][:tags].uniq.join ', ' %>
29     <% end %>
30   </td>
31   <td>
32     <% if @collection_info[c.uuid][:wanted_by_me] %>
33       <span class="label label-info">2&times;</span>
34     <% elsif @collection_info[c.uuid][:wanted] %>
35       <span class="label">2&times;</span>
36     <% else %>
37       <span class="label">cache</span>
38     <% end %>
39   </td>
40 </tr>
41
42 <% end %>