django-infinite-pagination icon indicating copy to clipboard operation
django-infinite-pagination copied to clipboard

Efficiently paginate large object collections

Results 4 django-infinite-pagination issues
Sort by recently updated
recently updated
newest added

This essentially adds Django 1.11 compatibility while maintaining backwards compatibility.

Just to make you aware that the template is incompatible with bootstrap3, however, it's extremely simple to make it compatible. Just change: ``` ... ``` To: ``` ... ```

Hi, If concerned about performances, you should consider some better way to get items than using offsets, your implementation is going to get slower and slower and prone to show...