In Django, if your model has Filefield / Imagefield, when it's get deleted it doesn't delete attached files by default. To fix that you need to do two steps:
1) Add filecleanup function, that'll take care of deleting files attached to a model:
In Django, if your model has Filefield / Imagefield, when it's get deleted it doesn't delete attached files by default. To fix that you need to do two steps:
1) Add filecleanup function, that'll take care of deleting files attached to a model: