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

popover_rowevolution.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a62af4b032c5ea44ae99eb1d06757d27badff17e (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
<div class="rowevolution">
    <div class="popover-title">{$popoverTitle}</div>
    <div class="graph">
        {$graph}
    </div>
    <div class="metrics-container">
        <h2>{$availableMetricsText}</h2>

        <div class="rowevolution-documentation">
            {'RowEvolution_Documentation'|translate}
        </div>
        <table class="metrics" border="0" cellpadding="0" cellspacing="0">
            {foreach from=$metrics item=metric}
                <tr>
                    <td class="sparkline">
                        {$metric.sparkline}
                    </td>
                    <td class="text">
                        <span style="color:{$metric.color}">{$metric.label|escape:'html'}</span>{if $metric.details}:
                        <span class="details">{$metric.details}</span>{/if}
                    </td>
                </tr>
            {/foreach}
        </table>
    </div>
    <div class="compare-container">
        <h2>{'RowEvolution_CompareRows'|translate}</h2>

        <div class="rowevolution-documentation">
            {'RowEvolution_CompareDocumentation'|translate}
        </div>
        <a href="#" class="rowevolution-startmulti">&raquo; {'RowEvolution_PickARow'|translate}</a>
    </div>
</div>