Fix how table is displayed

This commit is contained in:
Isaac Shoebottom 2024-10-03 09:13:54 -03:00
parent 5f1a8a4995
commit 42f2b864a2

View File

@ -51,19 +51,19 @@
<button type="submit">Submit</button>
</form>
{{end}}
{{ range .Timestamps}}
<table style="text-align: center">
<tr>
<th>Taken</th>
<th>Ends</th>
<th>Has Ended</th>
</tr>
{{ range .Timestamps}}
<tr>
<td>{{ index . 0}}</td>
<td>{{ index . 1}}</td>
<td>{{ index . 2}}</td>
</tr>
{{end}}
</table>
{{end}}
</div>
</body>