@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 Labels Amount
@tx.Timestamp.ToTimeAgo() @if (tx.Labels.Any()) {
@foreach (var label in tx.Labels) {
@label.Text @if (!string.IsNullOrEmpty(label.Link)) { }
}
}
@DisplayFormatter.Currency(tx.Balance, tx.Currency) @DisplayFormatter.Currency(tx.Balance, tx.Currency)
} else {

There are no recent transactions.

}