{% load unfold %}
{% for stat in stats %}
{{ stat.title }}
{{ stat.value }}
{% if stat.change %}
{% if stat.change_type == 'positive' %}arrow_upward {% elif stat.change_type == 'negative' %}arrow_downward {% else %}remove{% endif %} {{ stat.change }}
{% endif %} {% if stat.description %}
{{ stat.description }}
{% endif %}
{% if stat.icon %}
{{ stat.icon }}
{% endif %}
{% if stat.show_accent %}
{% endif %}
{% endfor %}