implement copying of Stations for Seminary copy feature

This commit is contained in:
oliver 2016-01-30 20:15:13 +01:00
commit 40a233fa7d
4342 changed files with 1215466 additions and 0 deletions

View file

@ -0,0 +1,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="column columnodd">{{ 'Live_LastHours'|translate(24) }}</td>
<td class="column columnodd">{{ visitorsCountToday }}</td>
<td class="column columnodd">{{ pisToday }}</td>
</tr>
<tr class="">
<td class="column columnodd">{{ 'Live_LastMinutes'|translate(30) }}</td>
<td class="column columnodd">{{ visitorsCountHalfHour }}</td>
<td class="column columnodd">{{ pisHalfhour }}</td>
</tr>
</tbody>
</table>
</div>