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

14 خطوط
551 B
Twig

<div class="visitor-profile-summary visitor-profile-customdimensions">
<h1>{{ 'CustomDimensions_CustomDimensions'|translate }} ({{ scopeName }})</h1>
<div>
{%- for dimension in dimensions -%}
<p>
<span>{{ dimension.name }}: </span>
{%- for value in dimension.values -%}
<strong title="{{ value.count }}x">{{ value.value|rawSafeDecoded }}</strong>{% if not loop.last %}, {% endif %}
{%- endfor -%}
</p>
{%- endfor -%}
</div>
</div>