forked from rebillar/site-accueil-insa
11 lines
No EOL
380 B
Twig
11 lines
No EOL
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 -%} |