his is my understanding of the problem: there are two genric views: list view and detail view. the template invoked from the former gets the queryset in the context, and the template invoked from the latter gets the object in the context. note that the latter does not get the queryset, just a single object. in the detail template i do not kow which queryset the list is dealing with, i just know which object i need to display. i am lookng for a way to get three objects in my detail template: the current one that i need to show, the previous one in the order of the queryset (whatever this order might be), and the next one (if they exist). so far django gives my template just the current object when my detail template is called.
konstantin --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---