{{ title }}

{% for metric in metrics %}
{{ metric.label }}
{{ metric.value }}
{% if metric.description %}
{{ metric.description }}
{% endif %}
{% endfor %}
{% if not metrics %}

{{ empty_message | default("No metrics available.") }}

{% endif %} {% if items and columns %}
{% for col in columns %} {% endfor %} {% for item in items %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col.label }}
{% if col.type == "badge" %} {{ item[col.key] | default("") }} {% elif col.type == "bool" %} {{ item[col.key] | bool_icon }} {% elif col.type == "date" %} {{ item[col.key] | dateformat }} {% elif col.type == "currency" %} {{ item[col.key] | currency }} {% else %} {{ item[col.key] | default("") | truncate_text }} {% endif %}
{% endif %}