hi all, I'm trying to use the generic view to slim down my code. here I encountered a question:
I would like to use the generic object_list to list articles by category, so, here is what I'm trying to do: in urls.py - article_list_dict = { 'queryset': Article.objects.all(), } urlpatterns = patterns('', (r'category/(?P<category_id>\d+)/$', 'django.views.generic.list_detail.object_list', article_list_dict), ) I guess I need to build the 'queryset' of the article_list_dict dynamically as something like this: Article.object.filter(category__id__exact=<category_id>) rather than Article.objects.all(). Is it possible? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---