django-reversion-compare
django-reversion-compare copied to clipboard
Add compare view to django-reversion for comparing two versions of a reversion model.
using: https://github.com/jedie/python-creole v1.5.0.rc3
In the `BaseCompareVersionAdmin.compare_view` method, the current implementation of object retrieval uses `get_object_or_404` for the model. This method uses `_default_manager`, which makes it impossible to work with logically deleted objects. It...
We noticed that python 3.6 support was removed for versions compatible with django>=3.1. This is a problem since support for 3.6 doesn't end until the end of 2021 and is...
This allows to browse all changed objects within a revision much more comfortably
I would like to ask if it is possible to include the TabularInlines when comparing? If yes, may I know if there's an example for it? > No. But you...
The current documentation explains how to integrate with Django admin but doesn't cover the use case where two versions need to be compared inside the code (e.g. producing a report...
Is it possible to add a django-revision-comparison view to the default Revision view? The default revision behavior lists the revisions, and clicking a specific revision only displays the date &...
https://github.com/jedie/django-reversion-compare/blob/9005d24dece15dd413bd120d6ddd54b83515b15b/reversion_compare/mixins.py#L25-L26 It's untested: https://coveralls.io/builds/14375664/source?filename=reversion_compare%2Fmixins.py And we should add this functionality into the docs ;) see also #84
I am having a problem in my setup, all my compare views are extremely slow (I'm getting bad gateway from my reverse proxy in production), even when there is a...