Integrating with Django ReversionΒΆ
Install django-reversion
$ pip install django-reversionAdd
reversionto yourINSTALLED_APPSsetting.INSTALLED_APPS = ( ... 'reversion', ... )
./manage.py syncdbSet story settings
STORY_SETTINGS['USE_REVERSION'] = True
Versions are tracked from when reversion is first installed.