summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/blockstats-details.html
blob: e9466d949065cc82d60104796cc982ccbe5eb8da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<table class="table table-bordered table-striped">
	<tr>
		<th>{{lang_image}}</th>
		<th>{{lang_createTime}}</th>
		<th>{{lang_fileSize}}</th>
		<th>{{lang_blockCount}}</th>
	</tr>
	{{#rows}}
	<tr>
		<td>{{displayname}}</td>
		<td>{{createtime_s}}</td>
		<td>{{filesize_s}}</td>
		<td>{{blockcount}}</td>
	</tr>
	{{/rows}}
</table>