@using BTCPayServer.Services @using BTCPayServer.Components.LabelManager @model ListTransactionsViewModel @{ var walletId = Context.GetRouteValue("walletId").ToString(); } @foreach (var transaction in Model.Transactions) { @transaction.Timestamp.ToBrowserDate() @transaction.Id @transaction.Balance
}