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

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

    <div class="entityList">
        {% for category, dimensions in dimensionCategories %}
        {% set firstCategory = (loop.index0 == 0) %}
            <div class='dimensionCategory'>
                {{ category|translate }}
                <ul class='listCircle'>
                    {% for idx, dimension in dimensions %}
                        <li class="reportDimension {% if idx == 0 and firstCategory %}activeDimension{% endif %}"
                            data-url="{{ dimension.url }}">
                            <span class='dimension'>{{ dimension.title|translate }}</span>
                        </li>
                    {% endfor %}
                </ul>
            </div>
        {% endfor %}
    </div>

    <div style="float:left;max-width:900px;">
        <div class="loadingPiwik" style="display:none;">
            <img src="plugins/Morpheus/images/loading-blue.gif" alt=""/>{{ 'General_LoadingData'|translate }}
        </div>

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

</div>