what do you want. I'v checked the source code about object_list, and
the docstring says that:
results_per_page
number of objects per page (if paginated)
So results_per_page is a integer but not a object list.
--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit
There seems no such attribute existed in list_detail, but I think you
can count the number of the object_list, if you are using template, I
think you can do:
{{ object_list|length }}
to get the exactly number of the objects on the page.
it would be nice to see the
displaying_results_from/displaying_result_to feature implemented.
I think you can write your own pagination process. I create one for me
according to the core/paginator.py.