<% friendly_name = c.friendly_link_name %>
<% @collection_info[c.uuid][:tag_links].each do |tag_link| %>
<% friendly_name += raw(" #{tag_link.name}") %>
<% end %>
<%= render :partial => "selection_checkbox", :locals => {:object => c, :friendly_name => friendly_name} %>
|
<%= link_to_if_arvados_object c.uuid, {:no_tags => true } %>
|
<% i = 0 %>
<% while i < 3 and i < c.files.length %>
<% file = c.files[i] %>
<% file_path = "#{file[0]}/#{file[1]}" %>
<%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: c.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %>
<% i += 1 %>
<% end %>
<% if i < c.files.length %>
⋮
<% end %>
|
<%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %>
|
<% current_state = @collection_info[c.uuid][:wanted_by_me] ? 'persistent' : 'cache' %>
<%= render partial: 'toggle_persist', locals: { uuid: c.uuid, current_state: current_state } %>
|
Add
<% if @collection_info[c.uuid] %>
<% @collection_info[c.uuid][:tag_links].each do |tag_link| %>
<%= tag_link.name %>
<% if tag_link.owner_uuid == current_user.uuid %>
<% end %>
<% end %>
<% end %>
|
<% end %>