You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Trigger for AdsPicture Model# Receive the pre_delete signal and delete the file associated with the model instance.fromdjango.db.models.signalsimportpre_deletefromdjango.dispatch.dispatcherimportreceiver@receiver(pre_delete, sender=AdsPicture)defads_picture_pre_delete(sender, instance, **kwargs):
instance.image.delete(False)