Increase property page size.

This commit is contained in:
Edward Betts 2019-12-18 19:00:26 +00:00
parent 8645121e82
commit 1354743ded
3 changed files with 5 additions and 2 deletions

2
app.py
View file

@ -189,7 +189,7 @@ def property_query_page(property_id):
page = utils.get_int_arg('page') or 1
total = q.count()
page_size = 50
page_size = 100
pager = Pagination(page, page_size, total)
page_hits = pager.slice(q)