X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f3d919829c017376eeccd27db9908b7f5a6e32aa..43f38dbf96127a4036be5e8b01f9e82d825ad949:/apps/workbench/app/views/collections/_show_files.html.erb diff --git a/apps/workbench/app/views/collections/_show_files.html.erb b/apps/workbench/app/views/collections/_show_files.html.erb index 991c92d746..4cc262ecc0 100644 --- a/apps/workbench/app/views/collections/_show_files.html.erb +++ b/apps/workbench/app/views/collections/_show_files.html.erb @@ -1,34 +1,108 @@ - - - - - - - - - - <% if @object then @object.files.sort_by{|f|f[1]}.each do |file| %> - <% file_path = "#{file[0]}/#{file[1]}" %> - - - - - - +<% content_for :css do %> +ul.collection_files { + line-height: 2.5em; + list-style-type: none; + background: #FFF; +} + +ul.collection_files li { + clear: both; +} + +li.collection_files_row_even { + background: #FFF; +} + +li.collection_files_row_odd { + background: #EEE; +} + +.collection_files_inline { + clear: both; + width: 80%; + height: auto; + max-height: 6em; + margin: 0 1em; +} - +.collection_files_name { + padding-left: .5em; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} - - <% end; end %> - -
pathfiled/lsize
- <%= file[0] %> - - <%= link_to file[1], {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'inline'}, {title: 'View in browser'} %> - -
- <%= link_to raw(''), {controller: 'collections', action: 'show_file', uuid: @object.uuid, file: file_path, size: file[2], disposition: 'attachment'}, {class: 'label label-info', title: 'Download'} %> -
-
- <%= raw(human_readable_bytes_html(file[2])) %> -
+.collection_files_name i.fa { + display: block-inline; + width: 1.75em; + text-align: center; +} + +.collection_files_buttons { + float: right; +} +<% end %> + +<% content_for :tab_line_buttons do %> +
+
+
+
+ Collection storage status: + <%= render partial: 'toggle_persist', locals: { uuid: @object.uuid, current_state: (@is_persistent ? 'persistent' : 'cache') } %> +
+
+
+<% end %> + +<% file_tree = @object.andand.files_tree %> +<% if file_tree.nil? or file_tree.empty? %> +

This collection is empty.

+<% else %> + + <% end %> +
  • + <% if size.nil? # This is a subdirectory. %> + <% dirstack.push(File.join(dirname, filename)) %> +
    <%= filename %>
    + +<% end # if file_tree %>