From 655390b26597da8b97958b65bcb1ba9761b33bff Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 3 Aug 2020 18:50:51 +0200 Subject: [PATCH] A longer transaction history is better --- apps/note/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/note/views.py b/apps/note/views.py index 3524a080..d08dd2ec 100644 --- a/apps/note/views.py +++ b/apps/note/views.py @@ -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