Reputation: 41715
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..
Upvotes: 5
Views: 3039
Reputation: 891
Though this question is marked as answered , but i want to add that ..
Problems/errors with javascript/jQuery in a page, might so much render the debug tool bar not visible for this certain page/view
Upvotes: 0
Reputation: 308979
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.
Upvotes: 19