{% extends "djangosampler/base.html" %} {% load humanize %} {% block menu %} Back {% endblock %} {% block body %}

Query

{{ query.query }}
{{ extra|safe }}

Recent Performance

Today: {{ query.count|intcomma }} occurrences, {{ query.total_duration|floatformat:4|intcomma }}s, {{ query.total_cost|intcomma }} cost

{% for recent_date, recent_query in recent_queries %} {% endfor %}
{{ recent_date }} {% if recent_query %} {{ recent_query.count|intcomma }} occurrences, {{ recent_query.total_duration|floatformat:4|intcomma }}s, {{ recent_query.total_cost|intcomma }} cost {% endif %}

Callers

{% for stack in stacks %}

{{ stack.count|intcomma }} times, {{ stack.total_duration|floatformat:4|intcomma }}s, {{ stack.total_cost|floatformat:4|intcomma }} cost

{{ stack.stack }}
{% endfor %} {% endblock %}