commit 682b8c991b8a5713a93b03be64cc3cc5a06b0189 parent 600890903f1a6709826640fe6047c8ea50c7a55d Author: n0tr1v <n0tr1v@protonmail.com> Date: Sat, 16 Dec 2023 01:30:10 -0500 UI Diffstat:
| M | pkg/web/public/views/pages/poker.gohtml | | | 12 | +++++++----- |
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/pkg/web/public/views/pages/poker.gohtml b/pkg/web/public/views/pages/poker.gohtml @@ -48,19 +48,21 @@ <table class="table table-novpadding table-sm table-hover table-striped"> <tr> <th>Table</th> - <th>Players</th> + <th class="text-center">Players</th> <th>Min/max buy-in (chips)</th> - <th>Type</th> + <th class="text-center">Big Blind</th> + <th class="text-center">Type</th> </tr> {{ range .Data.Tables }} <tr> <td><a href="/poker/{{ .Slug }}">{{ .Name }}</a></td> - <td>{{ .NbSeated }}/6</td> + <td class="text-center">{{ .NbSeated }}/6</td> <td>{{ .MinBuyIn }} - {{ .MaxBuyIn }}</td> - <td>{{ if .IsTest }}FREE{{ else }}XMR{{ end }}</td> + <td class="text-center">{{ .MinBet }}</td> + <td class="text-center">{{ if .IsTest }}FREE{{ else }}XMR{{ end }}</td> </tr> {{ else }} - <tr><td colspan="4"><em>No table to show</em></td></tr> + <tr><td colspan="5"><em>No table to show</em></td></tr> {{ end }} </table>