@model ListTransactionsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(WalletsNavPages.Transactions, $"{Model.CryptoCode} Transactions", Context.GetStoreData().StoreName); } @section PageHeadContent { } @section PageFootContent { @*Without async, somehow selenium do not manage to click on links in this page*@ @* Custom Range Modal *@ }

@ViewData["PageTitle"]

If BTCPay Server shows you an invalid balance, rescan your wallet.
If some transactions appear in BTCPay Server, but are missing in another wallet, follow these instructions.

@if (Model.Transactions.Any()) { @if (Model.Labels.Any()) {
Filter by label: @foreach (var label in Model.Labels) { @label.Text }
}
@foreach (var transaction in Model.Transactions) { @if (transaction.Positive) { } else { } }
Date Label Transaction Id Amount
@transaction.Timestamp.ToBrowserDate() @foreach (var label in transaction.Labels) {
@if (!string.IsNullOrEmpty(label.Link)) { Transaction details }
}
@transaction.Id @transaction.Balance@transaction.Balance
@if (string.IsNullOrEmpty(transaction.Comment)) { } else { }
} else {

There are no transactions yet.

}