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

conversionOverview.twig « templates « Goals « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2697527eb737c0f2dc05e6367bc72e629254b6e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<ul class="ulGoalTopElements">
    {% if topDimensions.country is defined %}
        <li>{{ 'Goals_BestCountries'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.country} %}</li>
    {% endif %}
    {% if topDimensions.keyword is defined and topDimensions.keyword|length > 0 %}
        <li>{{ 'Goals_BestKeywords'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.keyword} %}</li>
    {% endif %}
    {% if topDimensions.website is defined and topDimensions.website|length > 0 %}
        <li>{{ 'Goals_BestReferrers'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.website} %}</li>
    {% endif %}
    <li>
        {{ 'Goals_ReturningVisitorsConversionRateIs'|translate("<strong>"~conversion_rate_returning~"</strong>")|raw }}
        , {{ 'Goals_NewVisitorsConversionRateIs'|translate("<strong>"~conversion_rate_new~"</strong>")|raw }}
    </li>
</ul><br style="clear:left"/>