New File New Folder Upload
<% @file_list.each do |file| %>
<% if file[:is_html] && current_site.screenshot_exists?(file[:path], '210x158') %>
<% elsif file[:is_image] && current_site.thumbnail_exists?(file[:path], '210x158') %>
<% elsif file[:is_directory] %>
<% else %>
<%= file[:ext][0..3] %>
<% end %> <%= file[:name] %>
<% if file[:size] %> <%= file[:size].to_bytes_pretty %> <% end %>
<% if file[:updated_at] %> <%= file[:updated_at].ago %> <% end %>
<% if file[:is_editable] && !file[:is_directory] %> Edit <% end %> <% if file[:is_directory] %> Manage <% end %> <% if !file[:is_root_index] %> Rename Delete <% end %> <% if file[:is_directory] %> <% else %> <% end %>
<% end %>