commit dfea1b8cadfefa10ab0cb5d9c288bdac4b828bfd
parent 4667cbdaf803d8198f37797bab26379117634673
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Wed, 13 Dec 2023 15:24:57 -0500
improve transactions table UI
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/pkg/web/public/views/pages/poker.gohtml b/pkg/web/public/views/pages/poker.gohtml
@@ -54,15 +54,13 @@
<tr>
<th>Amount XMR</th>
<th>Confirmations</th>
- <th>Processed</th>
<th>In/Out</th>
<th>Created at</th>
</tr>
{{ range .Data.Transactions }}
<tr>
<td>{{ .Amount | divide1T }}</td>
- <td>{{ if .IsIn }}{{ .Confirmations }}{{ else }}-{{ end }}</td>
- <td>{{ if .IsIn }}{{ .Processed | fmtBool }}{{ else }}-{{ end }}</td>
+ <td>{{ if .IsIn }}{{ .Confirmations }}/10{{ else }}-{{ end }}</td>
<td>{{ if .IsIn }}IN{{ else }}OUT{{ end }}</td>
<td>{{ .CreatedAt.Format "Jan 02, 2006 15:04:05" }}</td>
</tr>