Model history tracking is a feature which tracks the changes in model object, it tracks things like what change you made in it and when you deleted it. It also helps in the recovery of deleted object of model.
pip install django-old-new-history
INSTALLED_APPS = [
...
'django_old_new_history',
...
from django.contrib import admin
from .models import ExampleModel
from django_old_new_history.admin import DjangoOldNewHistory
@admin.register(ExampleModel)
class ExampleModelAdmin(DjangoOldNewHistory, admin.ModelAdmin):
...