Skip to content

Instantly share code, notes, and snippets.

@solidpple
Created December 17, 2017 13:53
Show Gist options
  • Select an option

  • Save solidpple/d7f163e1956fcf205fee35a31c91654b to your computer and use it in GitHub Desktop.

Select an option

Save solidpple/d7f163e1956fcf205fee35a31c91654b to your computer and use it in GitHub Desktop.
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