1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/CustomDimensions/templates/_actionTooltip.twig
2020-06-30 10:14:18 +12:00

11 خطوط
380 B
Twig

{% 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|raw }}
{%- endfor -%}
{%- endif -%}