Sha256: 73f08e9c19dd31ae9d26e893be4b987b942bd378727d9e2517f2929ca6e9fb90
Contents?: true
Size: 675 Bytes
Versions: 7
Compression:
Stored size: 675 Bytes
Contents
<%= render "list_header" %> <%= render "list_filters" %> <div class="table-responsive"> <table class="table table-hover <%= dom_class(resource_class, :table) %>"> <thead> <tr> <% list_fields.each do |list_field| %> <th><%= resource_class.human_attribute_name(list_field) %></th> <% end %> <th></th> </tr> </thead> <tbody> <%= render partial: 'list_item', collection: collection, as: :item %> </tbody> </table> </div> <div class="panel-footer panel-footer-pagination"> <%= render partial: "page_sizes" %> <%= will_paginate collection, class: :pages, renderer: BootstrapPagination::Rails %> </div>
Version data entries
7 entries across 7 versions & 1 rubygems