Refactor and remove sqlite and replace with MySQL

This commit is contained in:
2025-10-23 18:43:31 +01:00
parent d53e27eea8
commit 21ebc9c34b
139 changed files with 1013 additions and 529 deletions

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