Hi, everyone!
I'm trying to figure out how to show something like "Showing 1-10 of 52" using django pagination in my templates.
I accomplished the pagination itself but nothing comes to my mind about this requirement. Any ideas?
|
1
|
Hi, everyone! I'm trying to figure out how to show something like "Showing 1-10 of 52" using django pagination in my templates. I accomplished the pagination itself but nothing comes to my mind about this requirement. Any ideas? |
|||
|
|
|
|
Don't know why everyone is complicating things so much. As the documentation shows, all these attributes are already available. Paginator objects have a So, assuming you pass the
|
||
|
|
|
or
Wasn't that hard, was it? |
||
|
|
|
|
The django So as an (rough) example: view
template
(I wrote this code without the benefit of a compiler, so test it) |
|||
|
|
|
|
You'll need to do something moderately more complex behind the scenes. And please note that while I am a python dev, i've been using werkzeug and jinja2 for a long time now and so my django syntax is a little rusty. Also this was dry-coded (as in I just typed it here in the browser) and should be tested to make sure that it works as intended. Generally I'll create a pagination object, and pass it in a query object that isn't filtered by pages, you can also tell it how many per page and what page you're on. So something vaguely similar to:
And then pass the resulting paginator object into the template. Inside the paginator's init you'd want to do something similar to:
Then in the template you'd do something like
And later when you are ready to iterate over the objects you could just iterate over paginator.objects. I hope that gives you a general idea of how you can cleanly do this. |
||||
|