diff options
-rw-r--r-- | website/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/website/views.py b/website/views.py index 84012c0..f8cb04b 100644 --- a/website/views.py +++ b/website/views.py @@ -40,7 +40,8 @@ def home(request): total = Question.objects.all().count() total = int(total - (total % 10 - 10)) - questions = Question.objects.all().order_by('date_created').reverse()[marker:marker+10] + #questions = Question.objects.all().order_by('date_created').reverse()[marker:marker+10] + questions = Question.objects.all().order_by('date_created').reverse() context = { 'questions': questions, 'total': total, |