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

manage-custom-vars.directive.html « manage-custom-vars « angularjs « CustomVariables « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96b61a92cb505bc160de00deaea7a065e08d292f (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<div class="manageCustomVars">
    <div piwik-content-intro>
        <h2 piwik-enriched-headline
             help-url="http://piwik.org/docs/custom-variables/">
            {{ 'CustomVariables_CustomVariables'|translate }}
        </h2>

        <p>
            <span ng-bind-html="'CustomVariables_ManageDescription'|translate:manageCustomVars.siteName"></span>
        </p>
    </div>

    <div class="alert alert-info" ng-show="!manageCustomVars.model.isLoading && manageCustomVars.model.hasCustomVariablesInGeneral && !manageCustomVars.model.hasAtLeastOneUsage">
        {{ 'CustomVariables_SlotsReportIsGeneratedOverTime'|translate }}
    </div>

    <div ng-repeat="scope in manageCustomVars.scopes">
        <div piwik-content-block content-title="{{ 'CustomVariables_ScopeX'|translate:(scope.name) }}">
            <table piwik-content-table>
                <thead>
                <tr>
                    <th>{{'CustomVariables_Index'|translate }}</th>
                    <th>{{'CustomVariables_Usages'|translate }}</th>
                </tr>
                </thead>
                <tbody>
                <tr>
                    <td colspan="3" ng-show="manageCustomVars.model.isLoading">{{ 'General_Loading'|translate }}</td>
                </tr>
                <tr ng-repeat="customVariables in manageCustomVars.model.customVariables|filter:{scope: scope.value}">
                    <td class="index">{{ customVariables.index }}</td>
                    <td>
                    <span ng-show="(customVariables.usages|length) === 0"
                          class="unused">{{'CustomVariables_Unused'|translate }}</span>
                    <span ng-show="customVariables.usages|length" ng-repeat="cvar in customVariables.usages|orderBy:'-nb_actions'">
                        <span title="{{ 'CustomVariables_UsageDetails'|translate:(cvar.nb_visits ? cvar.nb_visits : 0):(cvar.nb_actions ? cvar.nb_actions : 0) }}">{{ cvar.name }}</span><span ng-show="!$last">, </span>
                    </span>
                    </td>
                </tr>
                </tbody>
            </table>
        </div>
    </div>

    <div ng-show="!manageCustomVars.model.isLoading"
         piwik-content-block
         content-title="{{ 'CustomVariables_CreateNewSlot'|translate }}">

        <p ng-show="!manageCustomVars.model.isLoading">
            {{ 'CustomVariables_CreatingCustomVariableTakesTime'|translate }}
            <br /><br />
            <span ng-bind-html="'CustomVariables_CurrentAvailableCustomVariables'|translate:('<strong>'+manageCustomVars.model.numSlotsAvailable+'</strong>')"></span>
            <br />
            <br />
            {{ 'CustomVariables_ToCreateCustomVarExecute'|translate }}
            <br />
            <pre piwik-select-on-focus><code>./console customvariables:set-max-custom-variables {{ manageCustomVars.model.numSlotsAvailable + 1 }}</code></pre>
        </p>

    </div>

</div>