From d66305352da1e34b896de1677e4659dde68759f9 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Thu, 24 Oct 2024 00:42:15 -0300 Subject: [PATCH] refactor: rename installmentplan account form field --- app/apps/transactions/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/apps/transactions/forms.py b/app/apps/transactions/forms.py index 3379abf..bfdc134 100644 --- a/app/apps/transactions/forms.py +++ b/app/apps/transactions/forms.py @@ -318,7 +318,7 @@ class TransferForm(forms.Form): class InstallmentPlanForm(forms.ModelForm): account = forms.ModelChoiceField( queryset=Account.objects.all(), - label=_("From Account"), + label=_("Account"), widget=TomSelect(clear_button=False, group_by="group"), ) tags = DynamicModelMultipleChoiceField(