This commit is contained in:
parent
8ba0e8f2ab
commit
0f5d842a64
6 changed files with 77 additions and 2 deletions
22
tmpl/stats.tmpl
Normal file
22
tmpl/stats.tmpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
{{template "head"}}
|
||||
<h2>Stats</h2>
|
||||
<h2>Codec Counts</h2>
|
||||
<div>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Codec</th>
|
||||
<th>Count</th>
|
||||
</tr>
|
||||
{{range $f := .CodecCounts}}
|
||||
<tr>
|
||||
<td>
|
||||
{{ $f.Codec }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $f.Count }}
|
||||
</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
</div>
|
||||
{{template "tail"}}
|
Loading…
Add table
Add a link
Reference in a new issue