On 3/15/07, Matias Surdi <[EMAIL PROTECTED]> wrote: > published_posts_dict = {'queryset': > Post.objects.filter(pub_date__lte=datetime.now()).filter(status='PB').order_by('-pub_date')} > > the problem is, with the filter pub_date__lte=datetime.now() . > > What happens,is that when I add a new post to the database, it doesn't > appear listed until y restart the web server.
This happens because the URL file doesn't get re-imported on every request -- it only gets imported once, at startup, and then stays in memory. And so that call to datetime.now() only happens once, and the value stays constant for as long as it's in memory. To have it change on every request, you'll probably want to write a short wrapper around a generic view, or rely on Django's default 'allow_future=False' in date-based generic views. -- "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 -~----------~----~----~----~------~----~------~--~---