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
I installed & configured django-debug-panel, but list of requests on "Django Debug" page of Google Chrome Devtools stayed empty. Turned out, that simply commenting out lines 59 and 60 on DebugToolbarMiddleware (yep, toolbar!) fixed the problem and I'm able to list AJAX requests with django-debug-panel.
# Don't render the toolbar during AJAX requests.
# if request.is_ajax():
# return
The text was updated successfully, but these errors were encountered:
I installed & configured
django-debug-panel
, but list of requests on "Django Debug" page of Google Chrome Devtools stayed empty. Turned out, that simply commenting out lines 59 and 60 on DebugToolbarMiddleware (yep, toolbar!) fixed the problem and I'm able to list AJAX requests with django-debug-panel.The text was updated successfully, but these errors were encountered: