dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit e096d243de3be484e151a9afe4591b601c40907d
parent b61e10aa4dee9c1cb956dc3038b6b2709211f6f2
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Wed, 20 Dec 2023 21:43:49 -0500

admin

Diffstat:
Mpkg/web/public/views/pages/admin/poker-transactions.gohtml | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/pkg/web/public/views/pages/admin/poker-transactions.gohtml b/pkg/web/public/views/pages/admin/poker-transactions.gohtml @@ -19,6 +19,7 @@ <thead> <tr> <th>Amount</th> + <th>Fee</th> <th>Confirmations</th> <th>In/Out</th> <th>User</th> @@ -29,6 +30,7 @@ {{ range .Data.Transactions }} <tr> <td style="font-family: monospace;">{{ .Amount.XmrStr }} xmr</td> + <td style="font-family: monospace;">{{ .Fee.XmrStr }} xmr</td> <td>{{ if .IsIn }}{{ .Confirmations }}/10{{ else }}-{{ end }}</td> <td>{{ if .IsIn }}IN{{ else }}OUT{{ end }}</td> <td><a href="/admin/users/{{ .User.ID }}/edit">{{ .User.Username }}</a></td>