Django 1.7.1 and Apache2 in a production context. I have the following situation ================= models.py
class Items(models.Model): code = models.CharField(primary_key=True,db_index=True,unique=True,max_length=20,db_column='code') description = models.CharField(max_length=255) supplier=models.ManyToManyField(Suppliers) class Meta: db_table = u'items' post_save.connect(ItemSaveInAnotherDB, sender=Items, dispatch_uid="save_in_another_db") class Suppliers(models.Model): name = models.CharField(max_length=150, db_column='name', db_index=True) address = models.CharField(max_length=255, db_column='address', blank=True,null=True) class Meta: db_table = u'suppliers' ================= admin.py class ItemsOption(admin.ModelAdmin): search_fields=[('code','description', ('supplier')] fields=('code','description') filter_horizontal = ['supplier', ] ================= signals.py def ItemSaveInAnotherDB(sender, instance, **kwargs): ........ ........ sup = instance.supplier.all() print 'SUPPLIERS LIST' for s in sup: print s.name ........ ........ return ================= Let's suppose that I have an item with one supplier only: Donald Duck. 1) Now in the admin change form I add another supplier to the ManyToManyField, say 'Goofy', to the same item and click on save. Well the ItemSaveInAnotherDB post_save signal shows the previous situation only SUPPLIERS LIST Donald Duck 2) But if in the change form, containing as before Donald Duck and Goofy, I click again on save (without changing anything, I mean) the ItemSaveInAnotherDB signals shows correctly SUPPLIERS LIST Donald Duck Goofy I thought that the post_save signal in case 1) acted on the already saved record therefore in my poor opinion it should have shown both Donald Duck and Goofy. Instead.... only re-saving the record the post_save signal as in case 2) it works correctly. How can I avoid this and have the more updated list available at first shot? Ciao Vittorio -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/BDA52C94-E52F-4227-907E-D865CD5EAA08%40gmail.com. For more options, visit https://groups.google.com/d/optout.