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
DoesNotExist at /chroniker/log/73750/change/ Log matching query does not exist.
log seems to exist in change_list and can be accessed through /chroniker/log/73750/stdout/
maybe this is due to absolute urls. i am running admin site at "/" instead of "/admin/
The text was updated successfully, but these errors were encountered:
looking closer at the issue i identified the problem with the htmlwidget class
by replacing obj = related_model._default_manager.get(**{key: value}) with
obj = related_model._default_manager.get(**{key: value})
try: obj = related_model._default_manager.get(**{key: value}) except: obj = "404"
i can view the page however it does not fix the underlying issue
Sorry, something went wrong.
No branches or pull requests
log seems to exist in change_list and can be accessed through
/chroniker/log/73750/stdout/
maybe this is due to absolute urls. i am running admin site at "/" instead of "/admin/
The text was updated successfully, but these errors were encountered: