Files
website/web/templates/statistics/thunderball.html

18 lines
341 B
HTML

{{ define "content" }}
<div class="wrap">
<h1>Thunderball Statistics</h1>
<div class="grid">
<div class="card">
<h3>Top 5 (since {{.Since}})</h3>
<table>
<thead><tr><th>Number</th><th>Frequency</th></tr></thead>
<tbody>
{{range .TopSince}}
<tr><td>{{.Number}}</td><td>{{.Frequency}}</td></tr>
{{end}}
</tbody>
</table>
</div>
</div>
{{end}}