Guest User

Untitled

a guest
May 30th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. for article in Article.objects.all().prefetch_related('comments__author'):
  2.   for comment in article.comments:
  3.     author = comment.author
  4.     do_things(article.title, comment.text, comment.author.email)
Add Comment
Please, Sign In to add comment