Re: change of m2m field not reflected

2009-11-04 Thread Georg Göttlich
Hello Russ, thank you for your detailed reply! I wasn't aware of the complete decoupling of m2m fields from the model. This made me realise that the admin must handle m2m field differently which in turn led to ModelAdmin.save_formset and formset.save_m2m(). I haven't tried this yet, but I'm

change of m2m field not reflected

2009-11-03 Thread Georg Göttlich
Hi everybody, I have a problem with denormalizing a m2m field. For several reasons I want to save a CSV string of all the authors of a text. The authors are manage in an m2m field to auth.user. The changes are made with the admin. First I tried to override the save() method of the model. This

Re: change of m2m field not reflected

2009-11-03 Thread Russell Keith-Magee
2009/11/4 Georg Göttlich : > > Hi everybody, > > I have a problem with denormalizing a m2m field. For several reasons I > want to save a CSV string of all the authors of a text. The authors > are manage in an m2m field to auth.user. The changes are made with the > admin. > > First