feat: add categories and allow to finish a recurring transaction

This commit is contained in:
Herculino Trotta
2024-11-05 00:03:36 -03:00
parent 1c460b23ba
commit ee7c8c54ca
8 changed files with 251 additions and 108 deletions

View File

@@ -615,7 +615,7 @@ class RecurringTransactionForm(forms.ModelForm):
end_date = cleaned_data.get("end_date")
if start_date and end_date and start_date > end_date:
raise forms.ValidationError("End date should be after the start date.")
raise forms.ValidationError(_("End date should be after the start date"))
return cleaned_data