@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 *@ }
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.
Date | Label | Transaction Id | Amount | ||
---|---|---|---|---|---|
@transaction.Timestamp.ToBrowserDate() |
@foreach (var label in transaction.Labels)
{
@if (!string.IsNullOrEmpty(label.Link))
{
Transaction details
}
}
|
@transaction.Id | @if (transaction.Positive) {@transaction.Balance | } else {@transaction.Balance | }
@if (string.IsNullOrEmpty(transaction.Comment))
{
}
else
{
}
|
There are no transactions yet.
}