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

generate.tpl « templates « VisitorGenerator « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4063f25b928245cb4e9f769efa786abccd0034f (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
{assign var=showSitesSelection value=false}
{assign var=showPeriodSelection value=false}
{include file="CoreAdminHome/templates/header.tpl"}

<h2>{'VisitorGenerator_VisitorGenerator'|translate}</h2>

<table class="adminTable adminTableNoBorder" style="width: 600px;">
<thead>
    <tr>
        <th>{'VisitorGenerator_Visitors'|translate}</th>
        <th>{'VisitorGenerator_ActionsPerVisit'|translate}</th>
        <th>{'VisitorGenerator_Date'|translate}</th>
    </tr>
</thead>
<tbody>
{foreach from=$dates item=date}
    <tr>
        <td>{$date.visitors}</td>
        <td>{$date.actionsPerVisit}</td>
        <td>{$date.startTime|date_format:"%Y-%m-%d"}</td>
    </tr>
{/foreach}
</tbody>
</table>

<p>{'VisitorGenerator_NbActions'|translate}: {$nbActionsTotal}<br />
{'VisitorGenerator_NbRequestsPerSec'|translate}: {$nbRequestsPerSec}<br />
{$timer}</p>

{include file="CoreAdminHome/templates/footer.tpl"}