Does anyone have documentation on how to use this with django's built in pagination capabilities ? https://docs.djangoproject.com/en/dev/topics/pagination/
--edit--
Can documentation on how to do this be added to the project documentation section about using django-filters with class based generic views?
Pass the FilterSet's QuerySet to the pagination mechanism. (StackOverflow is your place for this kind of question.)
@carltongibson - I've clarified my issue. I wasnt so much asking for help with fixing my problem as pointing out something that could be better documented in the project documentation.
@techdragon Did you find a way to do this? With Class based views.
Does pagination not automatically work with the FilterView
? It ultimately inherits MultipleObjectMixin
, which is the class that provides pagination behavior.
@rpkilby Yes I realized that after checking the source. I think this would be something good to add to the docs.
Most helpful comment
@carltongibson - I've clarified my issue. I wasnt so much asking for help with fixing my problem as pointing out something that could be better documented in the project documentation.