23 lines
433 B
Cheetah
23 lines
433 B
Cheetah
{{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>
|
|
{{.Element}} {{.Script}}
|
|
{{template "tail"}}
|