mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 02:08:32 +01:00
* Add dashboard and chart basics * More widgets * Make widgets responsive * Layout dashboard * Prepare ExplorerClient * Switch to Chartist * Dynamic data for store numbers and recent transactions tiles * Dynamic data for recent invoices tile * Improvements * Plug NBXPlorer DB * Properly filter by code * Reorder cheat mode button * AJAX update for graph data * Fix create invoice button * Retry connection on transient issues * App Top Items stats * Design updates * App Sales stats * Add points for weekly histogram, set last point to current balance Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
27 lines
948 B
Text
27 lines
948 B
Text
@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>
|
|
<div class="store-number">
|
|
<header>
|
|
<h6>TXs in the last @Model.TransactionDays days</h6>
|
|
@if (Model.Transactions > 0)
|
|
{
|
|
<a asp-controller="UIWallets" asp-action="WalletTransactions" asp-route-walletId="@Model.WalletId">View All</a>
|
|
}
|
|
</header>
|
|
<div class="h3">@Model.Transactions</div>
|
|
</div>
|
|
<div class="store-number">
|
|
<header>
|
|
<h6>Refunds Issued</h6>
|
|
</header>
|
|
<div class="h3">@Model.RefundsIssued</div>
|
|
</div>
|
|
</div>
|