django-debug-panel icon indicating copy to clipboard operation
django-debug-panel copied to clipboard

Couldn't display AJAX calls

Open jakubste opened this issue 6 years ago • 1 comments

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

jakubste avatar Feb 03 '19 11:02 jakubste

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.

mtrofimiuk avatar Dec 09 '20 15:12 mtrofimiuk