Sha256: 08ebd8dc4ae99f2d4d6308726c3a87f2b4f732b522ba854aca2fc180e6e42b51

Contents?: true

Size: 538 Bytes

Versions: 4

Compression:

Stored size: 538 Bytes

Contents

<% if provider.present? %>
  <table id="file-list">
    <thead>
      <tr>
        <th>Name</th>
        <th>Size</th>
        <th>Kind</th>
        <th>Modified</th>
      </tr>
    </thead>
    <% provider.contents(browse_path).each_with_index do |file,index| %>
      <% if is_acceptable?(file) %>
        <% path = browse_everything_engine.contents_path(provider_name,file.id) %>
        <%= render :partial => 'file', :locals => { :file => file, :index => index, :path => path } %>
      <% end %>
    <% end %>
  </table>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
browse-everything-0.6.0 app/views/browse_everything/_files.html.erb
browse-everything-0.5.2 app/views/browse_everything/_files.html.erb
browse-everything-0.5.1 app/views/browse_everything/_files.html.erb
browse-everything-0.5.0 app/views/browse_everything/_files.html.erb