django-paging icon indicating copy to clipboard operation
django-paging copied to clipboard

Endless paging?

Open alexgula opened this issue 13 years ago • 1 comments

Function paginate is defined like def paginate(request, queryset_or_list, per_page=25, endless=True):

But in paging_extras it is used only with 3 parameters, so all my paging are endless. Is it desirable behaviour and is it possible to pass additional parameter?

So far, I've ended with changing line 35 in paginate to paginate_func(request, queryset_or_list, per_page, False) but it doesn't seem right solution :)

alexgula avatar Nov 02 '10 22:11 alexgula

endless should equal False by default

adamn avatar Jan 25 '11 21:01 adamn