On 9/3/07, synthrabbit <[EMAIL PROTECTED]> wrote: > latest_info_dict = { > 'queryset': Page.objects.all(), > 'slug': Page.objects.latest().slug, > }
The bit which calls latest() here is evaluated exactly once: when your URLs module is first loaded into memory. Hence, whichever object is the latest at that moment is the one which will be returned for every request over the lifetime of the process which loaded this module. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---