From 736a116685746bb8b0094ca403d547b9e46e6504 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 9 Mar 2025 20:21:48 -0300 Subject: [PATCH] fix: missing selection when updating transactions in a transaction list --- app/templates/calendar_view/fragments/list_transactions.html | 2 +- .../installment_plans/fragments/list_transactions.html | 2 +- .../recurring_transactions/fragments/list_transactions.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/calendar_view/fragments/list_transactions.html b/app/templates/calendar_view/fragments/list_transactions.html index 3ec69a3..81c57e4 100644 --- a/app/templates/calendar_view/fragments/list_transactions.html +++ b/app/templates/calendar_view/fragments/list_transactions.html @@ -5,7 +5,7 @@ {% block title %}{% translate 'Transactions on' %} {{ date|date:"SHORT_DATE_FORMAT" }}{% endblock %} {% block body %} -
+
{% for transaction in transactions %} {% empty %} diff --git a/app/templates/installment_plans/fragments/list_transactions.html b/app/templates/installment_plans/fragments/list_transactions.html index 78448d0..d33085f 100644 --- a/app/templates/installment_plans/fragments/list_transactions.html +++ b/app/templates/installment_plans/fragments/list_transactions.html @@ -5,7 +5,7 @@ {% block title %}{% translate 'Installments' %}{% endblock %} {% block body %} -
+
{% for transaction in transactions %} {% endfor %} diff --git a/app/templates/recurring_transactions/fragments/list_transactions.html b/app/templates/recurring_transactions/fragments/list_transactions.html index 1318764..7514f74 100644 --- a/app/templates/recurring_transactions/fragments/list_transactions.html +++ b/app/templates/recurring_transactions/fragments/list_transactions.html @@ -5,7 +5,7 @@ {% block title %}{% translate 'Transactions' %}{% endblock %} {% block body %} -
+
{% for transaction in transactions %} {% endfor %}