Ejemplo n.º 1
0
 def clean(self):
     # allow additional validation
     form_validate.send(PaymentMethodForm, form=self)
     return self.cleaned_data
Ejemplo n.º 2
0
 def clean(self):
     # allow additional validation
     form_validate.send(PaymentMethodForm, form=self)
     return self.cleaned_data
Ejemplo n.º 3
0
 def clean(self, *args, **kwargs):
     super(CustomChargeForm, self).clean(*args, **kwargs)
     form_validate.send(CustomChargeForm, form=self)
     return self.cleaned_data
Ejemplo n.º 4
0
 def clean(self, *args, **kwargs):
     super(CustomChargeForm, self).clean(*args, **kwargs)
     form_validate.send(CustomChargeForm, form=self)
     return self.cleaned_data