I want to use Django debug toolbar with Angular.js to see SQL queries, time taken to execute and explanation.
I have added Django debug toolbar in the INSTALLED_APPS
.
According to documentation I set ROOT_TAG_EXTRA_ATTRS = 'ng-non-bindable'
in the settings.py
file. And even tried ROOT_TAG_EXTRA_ATTRS = 'class="ng-non-bindable"'
I see 0 SQL query even though queries are made and data is received successfully.
What's the catch here?