Skip to main content
๐Ÿ› Bug HuntDJ Django Hardโšก+35 XP

N+1 Query Problem

This view makes too many database queries.

๐Ÿ› Find the bug
1def post_list(request):
2 posts = Post.objects.all()
3 return render(request, 'list.html', {'posts': posts})
4# template: {% for post in posts %}{{ post.author.name }}{% endfor %}
๐Ÿ› The bug is on line 2

๐Ÿ”ง Select the correct fix: