Hello James Bennett! On Wed, 19 Jul 2006 11:32:00 -0500 you wrote: > > On 7/19/06, Grigory Fateyev <[EMAIL PROTECTED]> wrote: > > Now I do like so: [...] > > Unless I'm missing something, what you want is: > > date_list = [] > year_list = Article.objects.order_by('-pub_date').dates('pub_date', > 'year') for y in year_list: > date_list.append({'year': y.year, 'months': > Article.objects.filter('pub_date__year__exact=y.year').order_by('-pub_date').dates('pub_date', > 'month')}) > > And then iterate in the template like this: > > {% for dl in date_list %} > <h2>{{ dl.year }}</h2> > <ul> > {% for month in dl.months %} > <li>{{ month|date:"%B" }}</li> > {% endfor %} > </ul> > {% endfor %} > > Admittedly, I'm not entirely awake and alert right now (got no sleep > last night), but that feels like the right solution. > Thanks for helping.
dates_list = [] year_list=Article.objects.all().order_by('-pub_date').dates('pub_date','year') for y in year_list: row = {'year': y.year, 'months':Article.objects.filter(pub_date__contains='y.year').order_by('-pub_date').dates('pub_date','month')} dates_list.append(row) print date_list return: [{'months': [], 'year': 2002}, {'months': [], 'year': 2003}, {'months': [], 'year': 2004}, {'months': [], 'year': 2005}] [{'months': [], 'year': 2002}, {'months': [], 'year': 2003}, {'months': [], 'year': 2004}, {'months': [], 'year': 2005}, {'months': [], 'year': 2006}] like empty months, but at that time in api: >>> Article.objects.filter(pub_date__contains='2005').order_by('-pub_date').dates('pub_date','month') [datetime.datetime(2005, 1, 1, 0, 0), datetime.datetime(2005, 2, 1, 0, 0), datetime.datetime(2005, 3, 1, 0, 0), datetime.datetime(2005, 4, 1, 0, 0), datetime.datetime(2005, 5, 1, 0, 0), datetime.datetime(2005, 6, 1, 0, 0), datetime.datetime(2005, 7, 1, 0, 0), datetime.datetime(2005, 8, 1, 0, 0), datetime.datetime(2005, 9, 1, 0, 0), datetime.datetime(2005, 10, 1, 0, 0), datetime.datetime(2005, 11, 1, 0, 0), datetime.datetime(2005, 12, 1, 0, 0)] and, of course, months in templates is empty. Why it can be? This question is not clear django, but think will be interesting for many people. -- ÷ÓÅÇÏ ÎÁÉÌÕÞÛÅÇÏ! greg [at] anastasia [dot] ru çÒÉÇÏÒÉÊ. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---