JourneyJoker/payment/sepa/forms.py
Klaus-Uwe Mitterer 54e84be36a Implement login system
Copy over payment system from kumi.xxx
Add missing requirements
Other stuff
2021-03-21 16:50:50 +01:00

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)