Hi All,

I have the following in a view:

     objects = model.objects.all()
     paginator = Paginator(objects,10)
     return render_to_response(
         'index.html',dict(
             objects = paginator.page(page),
             total_objects = len(objects),
             )
         )

Is that the best way to get the total number of objects returned or is 
there a way I can do that which means the database does as little work 
as possible?

cheers,

Chris

-- 
Simplistix - Content Management, Batch Processing & Python Consulting
            - http://www.simplistix.co.uk

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to