Sha256: 99790f3f8002b36e33a88a3a8c471f6b13109c56c1fe3db84104031cffb12974
Contents?: true
Size: 622 Bytes
Versions: 14
Compression:
Stored size: 622 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"> <%= will_paginate collection, renderer: BootstrapPagination::Rails %> </div>
Version data entries
14 entries across 14 versions & 1 rubygems