A Django Model Manager for Soft Deleting Records and How to Customize the Django Admin
You can do this.
from somewhere import SoftDeleteManager
class NewManager(SoftDeleteManager):
”’new stuff”’
and in the model
objects = NewManager()
Read more comments by Greg Allard