2022-04-12 09:55:10 +02:00
|
|
|
@model BTCPayServer.Components.StoreNumbers.StoreNumbersViewModel
|
|
|
|
|
|
|
|
<div class="widget store-numbers">
|
|
|
|
<div class="store-number">
|
|
|
|
<header>
|
|
|
|
<h6>Payouts Pending</h6>
|
|
|
|
<a asp-controller="UIStorePullPayments" asp-action="Payouts" asp-route-storeId="@Model.Store.Id">Manage</a>
|
|
|
|
</header>
|
|
|
|
<div class="h3">@Model.PayoutsPending</div>
|
|
|
|
</div>
|
2022-04-30 12:54:12 +09:00
|
|
|
@if (Model.Transactions is not null)
|
|
|
|
{
|
|
|
|
<div class="store-number">
|
|
|
|
<header>
|
|
|
|
<h6>TXs in the last @Model.TransactionDays days</h6>
|
|
|
|
@if (Model.Transactions.Value > 0)
|
|
|
|
{
|
|
|
|
<a asp-controller="UIWallets" asp-action="WalletTransactions" asp-route-walletId="@Model.WalletId">View All</a>
|
|
|
|
}
|
|
|
|
</header>
|
|
|
|
<div class="h3">@Model.Transactions.Value</div>
|
|
|
|
</div>
|
|
|
|
}
|
2022-04-12 09:55:10 +02:00
|
|
|
<div class="store-number">
|
|
|
|
<header>
|
|
|
|
<h6>Refunds Issued</h6>
|
|
|
|
</header>
|
|
|
|
<div class="h3">@Model.RefundsIssued</div>
|
|
|
|
</div>
|
|
|
|
</div>
|