Read the docs: https://darknessrdg.github.io/django-paranoid-model/
Django abstract model with paranoid behavior, therefore when an instance is deleted it is not really deleted from database, it's applied a mask on the filter so when filter, the result are the "undeleted" instances.
Sometimes you might want to keep all datas saved on your database and when user wants do delete, it is just hidden form user.
All documentation are in the mkdocs/docs
directory and online at HERE !!. If you're new here, we recomend you to checkout the documentation first 😉 .
Install Django Paranoid Model package from pip
pip install django-paranoid-model
Add paranoid_model to your installed apps so you can use django admin with a paranoid behavior
INSTALLED_APPS = [
...
'paranoid_model'
]
Good job ! You're now ready to use it.
pip install -e .[test]
pytest
or run Tox to test on multiple Django versions
pip install tox
tox