Re: Problem regouping date list

2008-05-11 Thread Jason K
Beautiful, works perfectly! Thanks, Jason On May 11, 4:57 pm, Adi Jörg Sieker <[EMAIL PROTECTED]> wrote: > Hi, Jason, > > On 11.05.2008, at 16:46, Jason K wrote: > > > > > Hi, having a little trouble regrouping a date list. > > I have an simple inclusion tag to get a unique list of months, as >

Re: Problem regouping date list

2008-05-11 Thread Adi Jörg Sieker
Hi, Jason, On 11.05.2008, at 16:46, Jason K wrote: > > Hi, having a little trouble regrouping a date list. > I have an simple inclusion tag to get a unique list of months, as > follows: > > def show_month_list(): >month_list = Article.objects.dates('pub_date', 'month', > order='DESC') >re

Problem regouping date list

2008-05-11 Thread Jason K
Hi, having a little trouble regrouping a date list. I have an simple inclusion tag to get a unique list of months, as follows: def show_month_list(): month_list = Article.objects.dates('pub_date', 'month', order='DESC') return {'month_list': month_list} register.inclusion_tag('blog/_month