Re: Generic View Not Returning Objects

2009-01-25 Thread Daniel Roseman
On Jan 25, 9:54 pm, "ben.bleik...@gmail.com" wrote: > I am having an issue with Django 1.0.2 returning a list of blog posts > in my generic date based archive_index view. > > My URLs file looks like this: > > #Dictionaries > blog_dict = { >         'queryset': Entry.objects.all(), >         'date

Generic View Not Returning Objects

2009-01-25 Thread ben.bleik...@gmail.com
I am having an issue with Django 1.0.2 returning a list of blog posts in my generic date based archive_index view. My URLs file looks like this: #Dictionaries blog_dict = { 'queryset': Entry.objects.all(), 'date_field': 'pub_date', 'template_object_name': 'entry', } #URL