Created
December 17, 2017 13:53
-
-
Save solidpple/d7f163e1956fcf205fee35a31c91654b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.shortcuts import render | |
| from .models import Question | |
| def index(request): | |
| latest_question_list = Question.objects.order_by('-pub_date')[:5] | |
| context = {'latest_question_list': latest_question_list} | |
| return render(request, 'polls/index.html', context) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment