Deprecated
This project is no longer supported.
Divio will undertake no further development or maintenance of this project. If you are interested in taking responsibility for this project as its maintainer, please contact us via www.divio.com.
# Aldryn Reversion
A collection of shared helpers and mixins to provide support for django-reversion on models with translatable (using django-parler) fields and/or django-cms placeholder fields.
Note:
django-parler is optional and is not required. However, if your model is translated with Parler, aldryn-reversion will take translations and the resulting internal Parler translation cache into consideration when making revisions.
Please refer to documentation.
- Python 2.6, 2.7, 3.4
- Django 1.6 - 1.9
- django-reversion
- django CMS 3.0.12 or later
- django-parler
Most likely you won't need to install this addon - it will be installed as a dependency for some other addon. If you do need to install it manually, follow these steps:
Run pip install aldryn-reversion.
Add below apps to
INSTALLED_APPS
:INSTALLED_APPS = [ … 'reversion', 'aldryn_reversion', … ]
(Re-)Start your application server.
More detailed installation guidance is also available.