{% extends 'base.html' %} {% block menu %} {% include 'inclusion/query_sql_detail_menu.html' %} {% endblock %} {% block style %} {% endblock %} {% block content %}
{% if query %}
{{query.formatted_query}}
{{ query.time_taken }}ms
{{ query.num_joins }} joins
Traceback
The following is a Python stack trace that leads to the execution of the above SQL query.
{% for line in query.formatted_traceback_list %}
{{ line }}
{% endfor %}
{% else %}

No queries found in the application

{% endif %}
{% endblock %}