{% for stat in stats %}
{% set tileContent %}
{{ stat.title|trans }} {% if stat.tooltip is defined %} {% endif %} {% if stat.desc is defined %} {{ stat.desc|trans }} {% endif %} {% if stat.icon is defined and stat.icon and (stat.link is not defined or stat.value == 0) %} {% endif %}
{% endset %} {% if stat.link is defined and stat.value != 0 %} {% include '@MauticCore/Components/tile.html.twig' with { type: 'clickable', content: tileContent, href: stat.link, icon: stat.icon|default('ri-arrow-right-line'), attributes: {'data-toggle': 'ajax'} } %} {% else %} {% include '@MauticCore/Components/tile.html.twig' with { content: tileContent } %} {% endif %}
{% endfor %}