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

sites-list.html « sites-list « templates « SitesManager « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8dcf13ebecfbdf7c02aed54f70a140dc245a19c (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
26
27
28
29
30
31
32
33
34
35
36
37
<div class="entityContainer">

    <div ng-repeat="site in sites" ng-include="'plugins/SitesManager/templates/dialogs/dialogs.html'"></div>

    <div ng-include="'plugins/SitesManager/templates/sites-list/add-site-link.html'"></div>

    <table class="entityTable dataTable">
        <thead>
        <tr>
            <th>{{ 'General_Id'|translate }}</th>
            <th>{{ 'General_Name'|translate }}</th>
            <th>{{ 'SitesManager_Urls'|translate }}</th>
            <th>{{ 'SitesManager_ExcludedIps'|translate }}</th>
            <th>{{ 'SitesManager_ExcludedParameters'|translate }}</th>
            <th ng-show="globalSettings.siteSpecificUserAgentExcludeEnabled">
                {{ 'SitesManager_ExcludedUserAgents'|translate }}
            </th>
            <th>{{ 'Actions_SubmenuSitesearch'|translate }}</th>
            <th>{{ 'SitesManager_Timezone'|translate }}</th>
            <th>{{ 'SitesManager_Currency'|translate }}</th>
            <th>{{ 'Goals_Ecommerce'|translate }}</th>
            <th></th>
            <th></th>
            <th>{{ 'General_JsTrackingTag'|translate }}</th>
        </tr>
        </thead>
        <tbody>
            <tr     ng-controller="SitesManagerSiteController"
                    ng-repeat="site in sites"
                    ng-include="'plugins/SitesManager/templates/sites-list/site-fields.html'">
            </tr>
        </tbody>
    </table>

    <div ng-include="'plugins/SitesManager/templates/sites-list/add-site-link.html'"></div>

</div>