5 lines
164 B
Python
5 lines
164 B
Python
|
from django import forms
|
||
|
|
||
|
class SepaApplyPaymentForm(forms.Form):
|
||
|
reference = forms.CharField()
|
||
|
amount = forms.DecimalField(max_digits=11, decimal_places=2)
|