コード例 #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