@using BTCPayServer.Views.Stores
@using BTCPayServer.Abstractions.Extensions
@using BTCPayServer.Client
@model BTCPayServer.Models.WalletViewModels.PullPaymentsModel
@{
ViewData.SetActivePage(StoreNavPages.PullPayments, "Pull Payments", Context.GetStoreData().Id);
var nextStartDateSortOrder = (string)ViewData["NextStartSortOrder"];
string startDateSortOrder = null;
switch (nextStartDateSortOrder)
{
case "asc":
startDateSortOrder = "desc";
break;
case "desc":
startDateSortOrder = "asc";
break;
}
var sortIconClass = "fa-sort";
if (startDateSortOrder != null)
{
sortIconClass = $"fa-sort-alpha-{startDateSortOrder}";
}
var sortByDesc = "Sort by descending...";
var sortByAsc = "Sort by ascending...";
}
@section PageHeadContent {
}
Start | Name | Refunded | Actions |
---|---|---|---|
@pp.StartDate.ToBrowserDate() | @pp.Name |
|
View - Payouts - Archive |
There are no pull payments yet.
}