nigma / django-infinite-pagination

Efficiently paginate large object collections
BSD 3-Clause "New" or "Revised" License
26 stars 7 forks source link

bootstrap3 compatibility #4

Open dturner opened 10 years ago

dturner commented 10 years ago

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

<div class="pagination">
    <ul>
    ...
    </ul>
</div>

To:

<ul class="pagination">
    ...
</ul>