Пример #1
0
 def get_queryset(self):
     """
     Return the last five published questions (not including those set to be
     published in the future).
     """
     return Question.objects.filter(
         pub_date__lte=timezone.now()  #less than equal
     ).order_by('-pub_date')[:5]