{% extends "django_prometric/components/card.html" %} {% load i18n prometric_extras %} {% block body %} {% if queries %} {% for stat in queries %} {% endfor %}
{% translate "Query" %} {% translate "Calls" %} {% translate "Avg" %} {% translate "Total time" %}
{{ stat.query }} {{ stat.calls|num }} {{ stat.avg_ms|ms }} {{ stat.total_ms|ms }}

{% translate "Ranked by total time cost — the top entry is where optimisation pays off first." %}

{% else %}

{% translate "No database queries were recorded in this period." %}

{% endif %} {% endblock %}