@using BTCPayServer.Views.Stores @using BTCPayServer.Abstractions.Extensions @model BTCPayServer.Models.WalletViewModels.PullPaymentsModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["NavPartialName"] = "../Stores/_Nav"; ViewData.SetActivePageAndTitle(StoreNavPages.PullPayments, "Pull payments", Context.GetStoreData().StoreName); } @section PageHeadContent { }

@ViewData["Title"]

Create a new pull payment
@if (Model.PullPayments.Any()) {
@foreach (var pp in Model.PullPayments) { }
@foreach (var pp in Model.PullPayments) { }
Start Name Refunded Actions
@pp.StartDate.ToBrowserDate() @pp.Name
View - Payouts - Archive
@section PageFootContent { } } else {

There are no pull payments yet.

}