{% extends "django_prometric/components/card.html" %} {% load i18n prometric_extras %} {% block body %} {% if rows %}
{% for row in rows %}
{{ row.label }} {{ row.word }} {% if row.is_rate %}{{ row.value|pct }}{% else %}{{ row.value|ms }}{% endif %}
{% endfor %}
{% if stats.requests %}

{% blocktranslate with requests=stats.requests|num %}Measured over {{ requests }} transactions.{% endblocktranslate %}

{% endif %} {% else %}

{% translate "No data in this period." %}

{% endif %} {% endblock %}