[Answered ]-In Django: How do I auto-fill a ManyToMany-Field on save(), when called from django-admin?

2👍

Your mistake is in thinking you need to save the Conversation again after adding participants. You don’t: a many-to-many field is not really a field on the model, it’s an entity in a separate linking table. Just calling add is enough to save the new participant.

Leave a comment