Inline formset returns empty list on save?
问题 When I try to save my inline formset it just returns an empty list and no changes are reflected in the database. I have tried doing it with no option and commit=False but they both have the same result. I know there is data because I printed the formset as a table, and I know it is valid because the property is_valid() method returns true. Here is the code: def edit(request): if request.method == 'POST': print(request.POST) form = TombstoneForm(request.POST) print(form.is_valid()) t = form