예제 #1
0
파일: forms.py 프로젝트: mpango/satchmo
 def clean(self):
     # allow additional validation
     form_validate.send(PaymentMethodForm, form=self)
     return self.cleaned_data
예제 #2
0
 def clean(self):
     # allow additional validation
     form_validate.send(PaymentMethodForm, form=self)
     return self.cleaned_data
예제 #3
0
파일: forms.py 프로젝트: mpango/satchmo
 def clean(self, *args, **kwargs):
     super(CustomChargeForm, self).clean(*args, **kwargs)
     form_validate.send(CustomChargeForm, form=self)
     return self.cleaned_data
예제 #4
0
 def clean(self, *args, **kwargs):
     super(CustomChargeForm, self).clean(*args, **kwargs)
     form_validate.send(CustomChargeForm, form=self)
     return self.cleaned_data