What is the cleanest/simplest way to paginate django comments?

503 Views Asked by At

Using Django's built in comment framework what is the cleanest/simplest way to the paginate comments?

2

There are 2 best solutions below

0
On BEST ANSWER

Using Django's Built-In Pagination Framework.
https://docs.djangoproject.com/en/dev/topics/pagination/

Or Google Code Django-Pagination.
http://code.google.com/p/django-pagination/

0
On