morffix/tmpl/stats.tmpl
Samuel Lorch 38219f7b07
All checks were successful
/ release (push) Successful in 39s
Add Stats Chart
2024-07-13 03:33:43 +02:00

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"}}