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

bootstrap3 compatibility

Open dturner opened this issue 11 years ago • 0 comments
trafficstars

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>

dturner avatar Jun 04 '14 17:06 dturner