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