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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I was testing this app with django 2.1.8 and got this error when trying to check the admin:
File "/var/virtualenv/project/lib/python3.6/site-packages/automated_logging/admin.py", line 19, in get_actions del actions["delete_selected"] KeyError: 'delete_selected'
An easy fix would be:
def get_actions(self, request): actions = super(ReadOnlyAdminMixin, self).get_actions(request) actions.pop('delete_selected', None) return actions
The text was updated successfully, but these errors were encountered:
I am sorry for the late reply - I haven't been able to keep track of the project as much as I would've wanted in the last year.
Issue is acknowledged and will be fixed in a future release (currently working on a rework)
Sorry, something went wrong.
fixed with 6.0.0
indietyp
No branches or pull requests
I was testing this app with django 2.1.8 and got this error when trying to check the admin:
An easy fix would be:
The text was updated successfully, but these errors were encountered: