We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From here: https://github.com/jedie/django-reversion-compare/blob/master/reversion_compare/admin.py#L225
If ADD_REVERSION_ADMIN = False or not set, Version is never imported into admin.py and Reversion compare fails on line 166
ADD_REVERSION_ADMIN = False
Version
admin.py
I don't really want Reversions/Versions showing up in my admin page, so it should be possible to just move the import to the top of the module.
The text was updated successfully, but these errors were encountered:
Wow. Interesting. The unittests will not catch this case :( Think there is not really a easy was to test this, isn't it?
Sorry, something went wrong.
265c88a
Fix #79
c8517a6
No branches or pull requests
From here: https://github.com/jedie/django-reversion-compare/blob/master/reversion_compare/admin.py#L225
If
ADD_REVERSION_ADMIN = False
or not set,Version
is never imported intoadmin.py
and Reversion compare fails on line 166I don't really want Reversions/Versions showing up in my admin page, so it should be possible to just move the import to the top of the module.
The text was updated successfully, but these errors were encountered: