[Fixed]-Copy/move linked file when changing model instance owner in Django admin

1👍

Use the post_save signal of your Image model. In the same way you can use post_delete to actually delete the image file when the record is deleted.

You can review the Signals documentation here.

Leave a comment