@using BTCPayServer.Abstractions.Extensions @model BTCPayServer.Components.StoreRecentTransactions.StoreRecentTransactionsViewModel

Recent Transactions

@if (Model.Transactions.Any()) { View All }
@if (Model.InitialRendering) {
Loading...
} else if (Model.Transactions.Any()) { @foreach (var tx in Model.Transactions) { @if (tx.Positive) { } else { } }
Date Transaction Amount
@tx.Timestamp.ToTimeAgo() @tx.Id @tx.Balance@tx.Balance
} else {

There are no recent transactions.

}