@model ListTransactionsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Manage wallet"; ViewData.SetActivePageAndTitle(WalletsNavPages.Transactions); } @if (TempData.HasStatusMessage()) {
}
If BTCPay Server shows you an invalid balance, rescan your wallet.
If some transactions appear in BTCPay Server, but are missing on Electrum or another wallet, follow those instructions.
@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 { }