You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, leave WEBHOOKS = False in configuration.py
Start netbox
Navigate to /admin/
Expected Behavior
Netbox would show admin page as normal
Observed Behavior
With DEBUG = True:
Internal Server Error: /admin/
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 35, in inner
response = get_response(request)
File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 158, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 156, in _get_response
response = response.render()
File "/usr/local/lib/python3.5/dist-packages/django/template/response.py", line 106, in render
self.content = self.rendered_content
File "/usr/local/lib/python3.5/dist-packages/django/template/response.py", line 81, in rendered_content
template = self.resolve_template(self.template_name)
File "/usr/local/lib/python3.5/dist-packages/django/template/response.py", line 65, in resolve_template
return get_template(template, using=self.using)
File "/usr/local/lib/python3.5/dist-packages/django/template/loader.py", line 19, in get_template
raise TemplateDoesNotExist(template_name, chain=chain)
django.template.exceptions.TemplateDoesNotExist: django_rq/index.html
Workaround
pip3 uninstall django-rq if you are not using webhooks
The text was updated successfully, but these errors were encountered:
Note: this has been reported several times before (e.g. #2395, #2509, here, here, here, here). Here is how to reproduce it.
Environment
Steps to Reproduce
pip3 install django-rq
(which is a documented optional step)WEBHOOKS = False
in configuration.py/admin/
Expected Behavior
Netbox would show admin page as normal
Observed Behavior
With
DEBUG = True
:Workaround
pip3 uninstall django-rq
if you are not using webhooksThe text was updated successfully, but these errors were encountered: