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

totalVisits.tpl « templates « Live « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27c12873a0e587526d25fbfb0aac03fe97158e7c (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 id="visitsTotal">
    <table class="dataTable" cellspacing="0">
        <thead>
        <tr>
            <th id="label" class="sortable label" style="cursor: auto;">
                <div id="thDIV">{'General_Date'|translate}</div>
            </th>
            <th id="label" class="sortable label" style="cursor: auto;">
                <div id="thDIV">{'General_ColumnNbVisits'|translate}</div>
            </th>
            <th id="label" class="sortable label" style="cursor: auto;">
                <div id="thDIV">{'General_ColumnPageviews'|translate}</div>
            </th>
        </tr>
        </thead>
        <tbody>
        <tr class="">
            <td class="columnodd">{'Live_LastHours'|translate:24}</td>
            <td class="columnodd">{$visitorsCountToday}</td>
            <td class="columnodd">{$pisToday}</td>
        </tr>
        <tr class="">
            <td class="columnodd">{'Live_LastMinutes'|translate:30}</td>
            <td class="columnodd">{$visitorsCountHalfHour}</td>
            <td class="columnodd">{$pisHalfhour}</td>
        </tr>
        </tbody>
    </table>
</div>