{% load i18n %} {% if metric.result_type == 'table' %}

{{ metric.label }}

{% if metric.columns %} {% for column in metric.columns %} {% endfor %} {% endif %} {% for row in metric.value %} {% for cell in row %} {% endfor %} {% empty %} {% translate "Нет данных" %} {% endfor %}
{{ column }}
{{ cell }}
{% elif metric.result_type == 'stacked_items' %}
{% for item in metric.value %}
{{ item.title }} {{ item.primary_value }}
{{ item.secondary_value }}
{% empty %}

{% translate "Нет данных" %}

{% endfor %}
{% else %}
{{ metric.label }}
{{ metric.value }}
{% endif %}