I need to set initial data to formset with ManyToMany field.
formset
ManyToMany
Usually i\'m doing like this when there is no ManyToMany field in forms o
You should provide a list of pk as initial data for your ManyToMany relation instead of a dict.
pk
dict
Take a look at this thread, it might helps you.