You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure that the method used to check if a form has been deleted is right in this file. Django formset use the following test:
if form in formset.deleted_forms
In the case when data doesn't validate and is part of a deleted form, form.cleaned_data does not exist, and the way we test it can lead to problems (and in the worst case won't do everything we want...).
The text was updated successfully, but these errors were encountered:
Not sure that the method used to check if a form has been deleted is right in this file. Django formset use the following test:
In the case when data doesn't validate and is part of a deleted form, form.cleaned_data does not exist, and the way we test it can lead to problems (and in the worst case won't do everything we want...).
The text was updated successfully, but these errors were encountered: