1
0
mirror of https://github.com/django/django.git synced 2025-01-08 17:37:20 +00:00

Fixed #23855 -- Removed unnecessary all() in tutorial 3.

This commit is contained in:
Tim Graham 2014-11-17 18:10:50 +01:00
parent 4252a14c39
commit 8fce797830

View File

@ -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)