Increase number of recipes per page to 50 in recipes list

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-02-25 11:28:06 +00:00
parent 880081aff3
commit 516e3d198f

View File

@ -96,7 +96,7 @@ class LayerListView(ListView):
class RecipeSearchView(ListView):
context_object_name = 'recipe_list'
paginate_by = 10
paginate_by = 50
def get_queryset(self):
query_string = self.request.GET.get('q', '')