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

siteWithoutData.twig « templates « SitesManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20b63266449075d844749b398e5e5c3db1066d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "dashboard.twig" %}

{% block notification %}{% endblock %}

{% block content %}

    {% include "@CoreHome/_siteSelectHeader.twig" %}

    <div class="site-without-data">

        <h2>{{ 'SitesManager_SiteWithoutDataTitle'|translate }}</h2>

        <p>
            {{ 'SitesManager_SiteWithoutDataDescription'|translate }}
            {{ 'SitesManager_SiteWithoutDataSetupTracking'|translate('<a href="' ~ linkTo({
                'module': 'CoreAdminHome',
                'action': 'trackingCodeGenerator',
            }) ~ '">', '</a>')|raw }}
        </p>

        {{ trackingHelp|raw }}

    </div>

{% endblock %}