Here is a part of a model: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class News(models.Model): title = models.CharField(max_length=255) categories = models.ManyToManyField(Category) def save(self): print self.title print self.categories.all() super(News, self).save() print self.categories.all() print ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If I update a news and change the categories - the changes will be save, but self.categories will show the old categories (until next save call). How can I get to the new objects of a ManyToMany relation in the save method? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---