mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 12:41:49 +02:00
oops, restore pagination to 100
This commit is contained in:
parent
53c2b1d796
commit
65aa4b0fea
1 changed files with 1 additions and 1 deletions
|
@ -653,7 +653,7 @@ def list_bills():
|
|||
# set the last selected payer as default choice if exists
|
||||
if "last_selected_payer" in session:
|
||||
bill_form.payer.data = session["last_selected_payer"]
|
||||
bills = g.project.get_bill_weights_ordered().paginate(per_page=500, error_out=True)
|
||||
bills = g.project.get_bill_weights_ordered().paginate(per_page=100, error_out=True)
|
||||
|
||||
return render_template(
|
||||
"list_bills.html",
|
||||
|
|
Loading…
Reference in a new issue