Klaus-Uwe Mitterer
54e84be36a
Copy over payment system from kumi.xxx Add missing requirements Other stuff
5 lines
No EOL
164 B
Python
5 lines
No EOL
164 B
Python
from django import forms
|
|
|
|
class SepaApplyPaymentForm(forms.Form):
|
|
reference = forms.CharField()
|
|
amount = forms.DecimalField(max_digits=11, decimal_places=2) |