django inline formset validation
1 2 3 4 5 6 7 | class BaseInlineFormSet(forms.BaseInlineFormSet):
def clean(self):
if any(self.errors):
return
for form in self.forms:
# your code
raise forms.ValidationError( 'error message ')
|