Sha256: 9f0ed44b2c2df049b4eb0e547da70241aa324260a615acf5e669942cd9ab48b0

Contents?: true

Size: 1.01 KB

Versions: 8

Compression:

Stored size: 1.01 KB

Contents

<% if provider.present? %>
  <div class="progress" id="loading_progress" aria-live="polite">
    <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
      100% Complete
    </div>
  </div>
  <table id="file-list" role="grid" tabindex="-1" title="Choose files to upload from the table below" aria-live="polite">
    <thead>
      <tr role="row" tabindex="-1">
        <th role="columnheader">Name</th>
        <th role="columnheader">Select All?</th>
        <th role="columnheader">Size</th>
        <th role="columnheader">Kind</th>
        <th role="columnheader">Modified</th>
      </tr>
    </thead>
    <% provider.contents(browse_path).each_with_index do |file,index| %>
      <% if is_acceptable?(file) %>
        <%= render :partial => 'file', :locals => { :file => file, :index => index, 
          :path => browse_everything_engine.contents_path(provider_name,file.id), :parent => params[:parent] } %>
      <% end %>
    <% end %>
  </table>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
browse-everything-0.10.5 app/views/browse_everything/_files.html.erb
browse-everything-0.10.4 app/views/browse_everything/_files.html.erb
browse-everything-0.10.3 app/views/browse_everything/_files.html.erb
browse-everything-0.10.2 app/views/browse_everything/_files.html.erb
browse-everything-0.10.1 app/views/browse_everything/_files.html.erb
browse-everything-0.10.0 app/views/browse_everything/_files.html.erb
browse-everything-0.9.1 app/views/browse_everything/_files.html.erb
browse-everything-0.9.0 app/views/browse_everything/_files.html.erb