Refactor and remove sqlite and replace with MySQL
This commit is contained in:
18
web/templates/statistics/thunderball.html
Normal file
18
web/templates/statistics/thunderball.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{ 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}}
|
||||
Reference in New Issue
Block a user