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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/VisitorGenerator/templates/generate.tpl')
-rw-r--r--plugins/VisitorGenerator/templates/generate.tpl30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/VisitorGenerator/templates/generate.tpl b/plugins/VisitorGenerator/templates/generate.tpl
new file mode 100644
index 0000000000..a4063f25b9
--- /dev/null
+++ b/plugins/VisitorGenerator/templates/generate.tpl
@@ -0,0 +1,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"} \ No newline at end of file