Hi,
-I am looking for an elegant, and universal way to add some code AFTER the saving of a model and after of course the database is updated with changes.
-I have tried post_save signals, but the transaction is still on, the entries do not exist in database
-I have tried overriding save in models.py, but even if i put the code after.....super(MyModel, self).save(*args, **kwargs), the database is still not updated until the save function completes.
any ideas?
many thanks,
Spiros