On Sep 13, 10:49 pm, djandrow <[EMAIL PROTECTED]> wrote: > This is probably really really obvious. I have the following statement > in my views.py: > > archive_list = Entry.objects.dates('entry_date', 'month', > order='DESC') > > then I have; > > {% for archive in archive_list %} > > {{ archive.datetime }} > > {% endfor %} > > in my template, i am 99.9% my problem is with {{ archive.datetime }}. > > Any help would be much appreciated, > > Andrew
You don't state what the actual problem is. One thing I can see is that each value for 'archive' will be an instance of datetime.datetime, so calling datetime on it again doesn't make any sense. Are you trying to format the output? If so, use the 'date' filter. For example: {% for archive in archive_list %} {{ archive|date:"m Y" }} {% endfor %} ... which will give you a list in the format "Jan 2008 Feb 2008 Mar 2008" etc. -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---