django-debug-panel
django-debug-panel copied to clipboard
Couldn't display AJAX calls
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
This project seems not maintaned. You can track ajax calls with this third party panel for debug_toolbar: https://github.com/djsutho/django-debug-toolbar-request-history
Update: Even built-in History panel does the job.