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

reports_by_dimension.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e18f5609580b4a5e17cb2cc902c7f9330acb510c (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
<div class="reportsByDimensionView">

    <div class="entityList">
        {foreach from=$dimensionCategories key=category item=dimensions name=dimensionCategories}
            <div class='dimensionCategory'>
                {$category|translate}
                <ul class='listCircle'>
                    {foreach from=$dimensions key=idx item=dimension}
                        <li class="reportDimension {if $idx eq 0 && $smarty.foreach.dimensionCategories.index eq 0}activeDimension{/if}"
                            data-url="{$dimension.url}">
                            <span class='dimension'>{$dimension.title|translate}</span>
                        </li>
                    {/foreach}
                </ul>
            </div>
        {/foreach}
    </div>

    <div style="float:left;">
        <div class="loadingPiwik" style="display:none">
            <img src="themes/default/images/loading-blue.gif" alt=""/>{'General_LoadingData'|translate}
        </div>

        <div class="dimensionReport">{$firstReport}</div>
    </div>
    <div class="clear"></div>

</div>