Integrating with Django ReversionΒΆ

  1. Install django-reversion

    $ pip install django-reversion
    
  2. Add reversion to your INSTALLED_APPS setting.

    INSTALLED_APPS = (
        ...
        'reversion',
        ...
    )
    
  3. ./manage.py syncdb

  4. Set story settings

    STORY_SETTINGS['USE_REVERSION'] = True
    

Versions are tracked from when reversion is first installed.