๐ Bug HuntDJ Django Hardโก+35 XP
N+1 Query Problem
This view makes too many database queries.
๐ Find the bug
1
def 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