Django Pagination paginate dictionary of objects

2020-07-28 Thread Harvindar Singh Garcha
I am new to Django, and trying to paginate a dictionary objects, However I am unable to so and not getting what's wrong with my code, Its still printing whole data on a single page. Above I have posted my View along with template code. class Search(ListView): paginate_by = 5 def get(self, re

Django Pagination paginate dictionary of objects

2020-07-28 Thread Harvindar Singh Garcha
I am new to Django, and trying to paginate a dictionary objects, I am calling stackoverflow API where I want the result to get paginated. However I am unable to so and not getting what's wrong with my code. Above I have posted my View along with template code. > > > class Search(ListView): > p