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

DBStats.tpl « templates « DBStats « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a65c22fc73193c51bc011c6d91c74a8c8940bef (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
31
32
33
34
35
36
37
38
39
40
41
42
43
{assign var=showSitesSelection value=false}
{assign var=showPeriodSelection value=false}
{include file="CoreAdminHome/templates/header.tpl"}
{include file="CoreAdminHome/templates/menu.tpl"}
<div style="max-width:980px;">

<h2>{'DBStats_DatabaseUsage'|translate}</h2>
{assign var=totalSize value=$tablesStatus.Total.Total_length}
<p>{'DBStats_MainDescription'|translate:$totalSize}</p>
<table class="adminTable">
	<thead>
		<th>{'DBStats_Table'|translate}</th>
		<th>{'DBStats_RowNumber'|translate}</th>
		<th>{'DBStats_DataSize'|translate}</th>
		<th>{'DBStats_IndexSize'|translate}</th>
		<th>{'DBStats_TotalSize'|translate}</th>
	</thead>
	<tbody id="tables">
		{foreach from=$tablesStatus key=index item=table}
		<tr {if $table.Name == 'Total'}class="active" style="font-weight:bold;"{/if}>
			<td>
				{$table.Name}
			</td> 
			<td>
				{$table.Rows}
			</td> 
			<td>
				{$table.Data_length}b
			</td> 
			<td>
				{$table.Index_length}b
			</td> 
			<td>
				{$table.Total_length}b
			</td> 
		</tr>
		{/foreach}
	</tbody>
</table>

</div>

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