Questions tagged [django-endless-pagination]

`django-endless-pagination` is a pagination tools supporting ajax, multiple and lazy pagination, Twitter-style and Digg-style pagination.

django-endless-pagination is a library for Django, which provides Twitter-style or Digg-style pagination, with optional AJAX support and other features like multiple or lazy pagination. The initial idea, which has guided the development of this application, is to allow pagination of web contents in very few steps.

Documentation is available online.

Github repository of the project

73 questions
10
votes
3 answers

Infinite scroll in django

Is it possible to implement facebook style loading of content while scrolling down? I would like to implement it in an ecommerce site. There are a lot of items in each category and the category page becomes too long. I could implement page numbers…
user1077344
8
votes
1 answer

How to do result post-processing before rendering with django endless-pagination?

I am trying to figure out if it's possible to do view post-processing on my queryset before rendering it in a django template that uses django-endless-pagination for infinite scroll. I have view-specific logic that omits certain results from the…
randalv
  • 900
  • 9
  • 19
5
votes
1 answer

Django Lazy Loading Pagination

I am trying to use Django Endless Pagination to achieve the effect pf a Twitter/Instagram style pagination wherein once the user scrolls to the bottom of the page, then new contents are loaded onto the page. Using the above module, i have been able…
Why
  • 626
  • 11
  • 29
3
votes
0 answers

Change page URL as user scrolls using django-endless-pagination and jquery-waypoints?

I am attempting to use history.pushState() to change the browser URL as a user scrolls through a list of movies. I am using django-endless-pagination with its Twitter-style pagination. What I would like to do is, as the user continually scrolls up…
3
votes
1 answer

Django Endless Pagination : 500 INTERNAL SERVER ERROR on Twitter-style Pagination

So I've been following this tutorial on this amazing app: http://django-endless-pagination.readthedocs.org/en/latest/twitter_pagination.html#twitter-page-template I went through, modified the views.py part to fit…
Hello
  • 57
  • 6
2
votes
0 answers

Wagtail endless pagination using Django EL(Endless) Pagination

I need to implement AJAX based endless pagination in Wagtail. I have gone crazy in order to make it work. Do I have to use the serve method in order to pass new results on scroll? Or do I create a view url and js call. Hopefully that is not too…
Henry Lynx
  • 1,099
  • 1
  • 19
  • 41
2
votes
2 answers

How to use django-el-pagination with filtering?

I have a django Listview and i am using django-el-pagination's ajax endless pagination to paginate my results and it works well. The problem is I need to apply some filters to it and have no clue on how to do it. Can i send parameters through GET to…
2
votes
1 answer

Django-endless-pagination twitter style pagination not working

I am using django-endless-pagination for my project. But its not working as it is supposed to. Neither is it showing the show more or neither does it work when I change the code to onscroll mode.