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

_visitorDetails.twig « templates « CustomDimensions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26e4d1c1f4050c9dc56eb5bc42c71725010b7695 (plain)
1
2
3
4
5
6
7
8
9
{% if customDimensions %}
    <div class="visitorCustomDimensions">
    {% for customDimension in customDimensions|filter(customDimension => customDimension.value|length > 0) %}
        <br/>
        <abbr class="visitorLogTooltip" title="{{ 'CustomDimensions_CustomDimensionId'|translate(customDimension.id) }}">{{ customDimension.name|truncate(30) }}:</abbr>
        {{ customDimension.value|truncate(50)|rawSafeDecoded }}
    {% endfor %}
    </div>
{% endif %}