The post_save hook from django.db.models.signals is executed right after the parent object has been stored in the database. As there is no hook for creation of updates of dependent objects, you have several alternatives: Attach to the post_save hook of your dependent model. This may work for all cases, where […]