Postman pagination

Issue #113 closed
Former user created an issue

Hello,

I'm trying to use a different pagination package, namely django-bootstrap-pagination on my templates. Unfortunately the returned object from the views is a queryset without the paginator contruct. For integration porposes I think this should be implemented as the dj-pagination shouldn't be enforced.

Best regards,

Comments (2)

  1. Patrick Samson repo owner
    • changed status to open

    jmcclell/django-bootstrap-pagination enforces the view to provide a page object. django-postman does not and will not comply with this design, as pagination must stay an option.

    I suggest you to have a look at alternatives such as:

    • github.com/tgdn/django-bootstrap-pagination
    • pypi.org/project/django-pagination-bootstrap/

    Both rely on django-pagination but notably on the good concept of a autopaginate tag to compose page objects from the queryset.

  2. Log in to comment