Re: Filter based on dates

2009-08-12 Thread When ideas fail
Thanks, i'd just worked that out, was about to come and post it. Thanks though. On 12 Aug, 20:23, Dj Gilcrease wrote: > On Wed, Aug 12, 2009 at 12:02 PM, When ideas > > fail wrote: > > def months_archive(request, year, month): > >    blog_posts = Post.objects.all().order_by("-post_date") > > bl

Re: Filter based on dates

2009-08-12 Thread Dj Gilcrease
On Wed, Aug 12, 2009 at 12:02 PM, When ideas fail wrote: > def months_archive(request, year, month): >    blog_posts = Post.objects.all().order_by("-post_date") blog_posts = Post.objects.filter(post_date__year=year, post_date__month=month).order_by("-post_date") --~--~-~--~~-