X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ac86cc3a04d65c1f330e237aa70df468faffd207..12dd86319a1c6fb88fbe1530dc59e6172d448337:/apps/workbench/app/views/collections/_index_tbody.html.erb diff --git a/apps/workbench/app/views/collections/_index_tbody.html.erb b/apps/workbench/app/views/collections/_index_tbody.html.erb index f8fbcdc833..3d5c1c7a58 100644 --- a/apps/workbench/app/views/collections/_index_tbody.html.erb +++ b/apps/workbench/app/views/collections/_index_tbody.html.erb @@ -1,26 +1,46 @@ <% @collections.each do |c| %> - + - <%= link_to_if_arvados_object c.uuid %> - - <% c.files.each do |file| %> - <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> + <% friendly_name = c.friendly_link_name %> + <% @collection_info[c.uuid][:tag_links].each do |tag_link| %> + <% friendly_name += raw(" #{tag_link.name}") %> <% end %> - - <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %> - - <% if @collection_info[c.uuid] %> - <%= @collection_info[c.uuid][:tags].uniq.join ', ' %> + <%= render :partial => "selection_checkbox", :locals => {:object => c, :friendly_name => friendly_name} %> + + <%= render :partial => "show_object_button", :locals => {object: c, size: 'xs'} %> + + + <%= c.uuid %> + + + <% 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 @collection_info[c.uuid][:wanted_by_me] %> - - <% elsif @collection_info[c.uuid][:wanted] %> - - <% else %> - cache + <% if i < c.files.length %> + ⋮ + <% end %> + + + <%= c.created_at.to_s if c.created_at %> + + +  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 %> +