Fix pagination on month archive, keep account
This commit is contained in:
parent
a0bc1a6608
commit
14755df86b
6 changed files with 7 additions and 7 deletions
|
@ -14,7 +14,7 @@
|
|||
{% include "statement/statement_table.html" %}
|
||||
<h3>{% translate "Transactions" %}</h3>
|
||||
{% include "transaction/transaction_table.html" %}
|
||||
{% if history.data %}
|
||||
{% if history %}
|
||||
<h3>{% translate "History" %}</h3>
|
||||
{% include "history/plot.html" %}
|
||||
{% endif %}
|
||||
|
|
|
@ -30,6 +30,6 @@ urlpatterns = [
|
|||
path(
|
||||
"<account>/history/<int:year>/<int:month>",
|
||||
TransactionMonthView.as_view(),
|
||||
name="transaction_month",
|
||||
name="account_transaction_month",
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue