Accessing updated M2M fields in overriden save() in django's admin
- by Jonathan
I'd like to use the user updated values of a ManyToManyField in a model's overriden save() method when I save an instance in admin.
It turns out that by design, django does not update the M2M field before calling save(), but only after the save() is complete as part of the form save...
How can I access the new values of this field in the override save() ?