Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_profileSummary.twig « templates « CustomDimensions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f94e35bbd6f2a1ea60c23007078dd68a72edbb01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>