We often have users who want a log of changes to information on their site, or things get accidentally deleted and people need to recover the information.
In working on the new site for our Educational Technologies departments, such a request was made.
Django Revision made it more than easy.
1. > pip install django-revision
2. Add ‘revision’ to your installed applications tuple
3. Add something like this to your model:
import reversion
class EquipmentAdmin(reversion.VersionAdmin):
pass
admin.site.register(Equipment, EquipmentAdmin)
Now you have a history log and a way to retrieve information that was changed erroneously!