From f30c09370bcdbb66d3da80193ce48d08c50460fb Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Wed, 31 Jul 2013 12:23:12 -0400 Subject: [PATCH] 20 -> 10 per page. --- snipts/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snipts/views.py b/snipts/views.py index a66d76e..6003816 100644 --- a/snipts/views.py +++ b/snipts/views.py @@ -17,7 +17,7 @@ from haystack.forms import ModelSearchForm from haystack.query import EmptySearchQuerySet, SearchQuerySet -RESULTS_PER_PAGE = getattr(settings, 'HAYSTACK_SEARCH_RESULTS_PER_PAGE', 20) +RESULTS_PER_PAGE = getattr(settings, 'HAYSTACK_SEARCH_RESULTS_PER_PAGE', 10) @render_to('snipts/detail.html') def detail(request, username, snipt_slug):