[Fixed]-Custom formset validation not working in django

1👍

The Django docs on custom formset validation show that you should create a clean method.

You have named your method insp_clean, so Django will never call it. Rename the method to clean.

Leave a comment