matomo / plugins /CustomDimensions /templates /_actionTooltip.twig
Leon4gr45's picture
Upload source files chunk 28
da96562 verified
Raw
History Blame Contribute Delete
376 Bytes
{% if action.customDimensions is defined %}
{% for dimension,value in action.customDimensions|filter(value => value|length > 0) %}
{% if loop.index == 1 %}
{{ 'CustomDimensions_CustomDimensions'|translate }}:
{%- endif %}
{# line break above is important #}
- {{ dimension|raw }} = {{ value }}
{%- endfor -%}
{%- endif -%}