I have been trying to do Django class-based CreateView and UpdateView with multiple inline formsets
CreateView works fine but UpdateView is not working properly, If
My guess is that you can't do
self.object = None
on overwritten post method in a UpdateView. So, try
post
UpdateView
self.object = self.get_object()
instead, once you already have an object instance in this case.