A longer transaction history is better

This commit is contained in:
Yohann D'ANELLO 2020-08-03 18:50:51 +02:00
parent 985a5ca876
commit 655390b265
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ class TransactionSearchView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView
transactions = transactions.filter(created_at__lte=data["created_before"])
table = HistoryTable(transactions)
table.paginate(per_page=20)
table.paginate(per_page=100)
context["table"] = table
return context