[Answered ]-Django Model; saving extra items in a ManyToMany field on save

2👍

This is due to django saving m2m fields AFTER model itself. I’m not sure if saving before your code in save() would help, take a look at m2m_changed signal – it looks like just what you need.

Leave a comment