debug toolbar doesn't show up for views which return HttpResponse() rather than render_to_response().
a view with return HttpResponse()
(for test sake) won't show up debug toolbar..
The problem is not that you are using HttpResponse
, but the content you return when you do so.
From the readme on django debug toolbar‘s github page:
Note: The debug toolbar will only display itself if the mimetype of the response is either
text/html
orapplication/xhtml+xml
and contains a closing</body>
tag.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With