- Author:
- wojas
- Posted:
- March 18, 2010
- Language:
- HTML/template
- Version:
- Not specified
- Score:
- 5 (after 5 ratings)
Add this code to the end of the <body>
of your main template and it will print out all your SQL queries with timings in the Firebug console.
This uses the "django.core.context_processors.debug" template context processor, which requires that DEBUG=True and that your IP address is listed in INTERNAL_IPS.
1 2 3 4 5 6 7 | {% if debug %}
<script type="text/javascript">
{% for q in sql_queries %}
console.debug("({{ q.time }}s)", "{{ q.sql|escapejs }}");
{% endfor %}
</script>
{% endif %}
|
More like this
- Bootstrap Accordian by Netplay4 5 years, 10 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 10 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 10 months ago
- Reusable form template with generic view by roldandvg 8 years, 11 months ago
- Pagination Django with Boostrap by guilegarcia 9 years, 1 month ago
Comments
Please login first before commenting.