> > Maybe the related objects are manipulated in a post_save signal, but > after 'my' post_save, so I can't see them at all.
Yes. The post_save signal is sent out right at the end of the save method of your main model object. The M2M objects are saved later than this. > Any clues? 1. Use your own view for saving the objects (assuming you are using Django Admin at the moment.) 2. Define a custom signal and dispatch it at the end of AutomaticManipulator.save() (by then all M2M objects have been saved.) This requires patching Django and will become obsolete once the newforms based Admin becomes mainstream. FWIW, I am using solution #2 above for manipulation of uploaded image files (which also are saved after the model save and post_save signal are dispatched by the AutomaticManipulator.) Perhaps there are other (cleaner) ways of doing this. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---