Created
July 8, 2018 17:41
-
-
Save harijay/5ac5a78f0e21635c4221f9c63f26bd28 to your computer and use it in GitHub Desktop.
This file contains 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 | |
def index(request): | |
#Get Last five Polls and now use the render shortcut , I like this option less | |
latest_questions = Question.objects.order_by('-pub_date')[:5] | |
context = { | |
'latest_questions':latest_questions, | |
} | |
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