fixed crud list

fixed payments
upload -a
This commit is contained in:
2025-07-23 11:08:25 +03:00
parent a4a91e0053
commit 4603953458
53 changed files with 1512 additions and 1078 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ from payments.models import Payment
class PaymentCreateForm(ModelForm):
class Meta:
model = Payment
fields = ['total_amount', 'company', 'description']
fields = ['company', 'total_amount', 'description']
widgets = {
'containers': CheckboxSelectMultiple(),
}