Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using django-pagination to paginate my object list. It is working flawlessly. I want to give a number to each object on the page and I am using {{forloop.counter}} for that, but the problem is it starts the object count from 1 on each page. I wanted to display the actual object count.

Say if I am paginating 10 objects per page, then I want to object number as 11 for the first object on page 2. I tried writing a template filter for this, but somehow I am not able to send both request.get.page and {{forloop.counter}} to my filter function. I am unable to do it that way.

Any help for direction will be appreciated.

share|improve this question

1 Answer

up vote 5 down vote accepted

You can use the add template tag to add the current count from the paginator to the forloop

{{ forloop.counter|add:paginator.page.start_index }}
share|improve this answer
I am getting the following error Caught VariableDoesNotExist while rendering: Failed lookup for key [start_index] in u'' – Sachin Feb 21 '12 at 13:06
how is the paginator passed from the view to the template? – Timmy O'Mahony Feb 21 '12 at 13:16
I am using django-pagination app that does the pagination in the template itself, I am not using paginator – Sachin Feb 21 '12 at 13:22
You can try page_obj.start_index instead – Timmy O'Mahony Feb 21 '12 at 13:35
yes, this has worked. Thanks alot – Sachin Feb 21 '12 at 13:36
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.