mirror of https://gitlab.crans.org/bde/nk20
A longer transaction history is better
This commit is contained in:
parent
985a5ca876
commit
655390b265
|
@ -215,7 +215,7 @@ class TransactionSearchView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView
|
||||||
transactions = transactions.filter(created_at__lte=data["created_before"])
|
transactions = transactions.filter(created_at__lte=data["created_before"])
|
||||||
|
|
||||||
table = HistoryTable(transactions)
|
table = HistoryTable(transactions)
|
||||||
table.paginate(per_page=20)
|
table.paginate(per_page=100)
|
||||||
context["table"] = table
|
context["table"] = table
|
||||||
|
|
||||||
return context
|
return context
|
||||||
|
|
Loading…
Reference in New Issue