Commit 5a6d6c5e authored by Tim Graham's avatar Tim Graham
Browse files

[1.7.x] Fixed #23855 -- Removed unnecessary all() in tutorial 3.

Backport of 8fce7978 from master
parent b2534bfa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -409,7 +409,7 @@ rewritten:


    def index(request):
        latest_question_list = Question.objects.all().order_by('-pub_date')[:5]
        latest_question_list = Question.objects.order_by('-pub_date')[:5]
        context = {'latest_question_list': latest_question_list}
        return render(request, 'polls/index.html', context)