@using BTCPayServer.Abstractions.Extensions @using BTCPayServer.Services @inject DisplayFormatter DisplayFormatter @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 @DisplayFormatter.Currency(tx.Balance, tx.Currency)@DisplayFormatter.Currency(tx.Balance, tx.Currency)
} else {

There are no recent transactions.

}