To install django-reversion, follow these steps:
The latest release (1.8.3) of django-reversion is designed to work with Django 1.7. If you have installed anything other than the latest version of Django, please check the compatible Django versions page before installing django-reversion.
There are a number of alternative methods you can use when installing django-reversion. Please check the installation methods page for more information.
django-reversion can be used to add a powerful rollback and recovery facility to your admin site. To enable this, simply register your models with a subclass of reversion.VersionAdmin:
import reversion
class YourModelAdmin(reversion.VersionAdmin):
pass
admin.site.register(YourModel, YourModelAdmin)
Whenever you register a model with the VersionAdmin class, be sure to run the ./manage.py createinitialrevisions command to populate the version database with an initial set of model data. Depending on the number of rows in your database, this command could take a while to execute.
For more information about admin integration, please read the admin integration documentation.
You can use django-reversion’s API to build powerful version-controlled views. For more information, please read the low level API documentation.