@using BTCPayServer.Services @using Microsoft.AspNetCore.Mvc.TagHelpers @using BTCPayServer.Components.LabelManager @model ListTransactionsViewModel @{ var walletId = Context.GetRouteValue("walletId").ToString(); } @foreach (var transaction in Model.Transactions) { @transaction.Timestamp.ToBrowserDate() @transaction.Id @if (transaction.Positive) { @transaction.Balance } else { @transaction.Balance }
@if (string.IsNullOrEmpty(transaction.Comment)) { } else { }
}