On Jul 21, 4:25 pm, AKK <andrewkenyon...@gmail.com> wrote: > Thanks, i tried this: > > blog_posts = Post.objects.filter(post_slug=slug) > blog_comments = blog_posts.comment_set.all() > > but i got this error and i don't know why: > > Traceback: > File "C:\ProgLangs\Python25\lib\site-packages\django\core\handlers > \base.py" in get_response > 86. response = callback(request, *callback_args, > **callback_kwargs) > File "C:/Program Files/Apache2.2\akonline\blog\views.py" in title_view > 17. blog_comments = blog_posts.comment_set.all() > > Exception Type: AttributeError at /blog/first_post/ > Exception Value: 'QuerySet' object has no attribute 'comment_set' > > Andrew
You can't do it on the whole blog_posts queryset, you have to do it on each blog_post object within the queryset. -- 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---