Re: When I mark to delete the formset, django requires complete all fields, he does not ignore the marked form to delete.

2015-03-27 Thread aRkadeFR
Thanks for the code paste. You mean in your views, the formset.is_valid() returns False and so does not delete your form tagged to delete? I don't quite understand where exactly is the problem? On 03/27/2015 12:17 AM, Neto wrote: When I mark to delete the formset, django requires complet

When I mark to delete the formset, django requires complete all fields, he does not ignore the marked form to delete.

2015-03-26 Thread Neto
When I mark to delete the formset, django requires complete all fields, he does not ignore the marked form to delete. How do I solve this? I wanna that django delete the form marked or ignore him. from django.forms.formsets import formset_factory>>> from myapp.forms import Ar