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
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")
--~--~-~--~~-
2 matches
Mail list logo