Amit Upadhyay skrev:
> Hi,
>
> You are all aware of object pagination, search results, your photo on
> flickr, stories on reddit, all have a next page/previous page paradigm.
> Django makes it trivially easy to create such pages by providing object_list
> generic view. There are some problems with the current implementation of
> pagination that we see around, page no 0/1 is assigned to the latest objects
> in the list. While in search result this makes little difference, in other
> cases it has a few consequences.
>   

Is there anything in your proposal that isn't solved by using something like

MyModel.objects.order_by('some_field')

for the queryset passed to the paginator?

Nis


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

Reply via email to