django inline formset validation
class BaseInlineFormSet(forms.BaseInlineFormSet):
def clean(self):
if any(self.errors):
return
for form in self.forms:
# your code
raise forms.ValidationError( 'error message ')