@using BTCPayServer.Services.PaymentRequests
@model BTCPayServer.Models.PaymentRequestViewModels.ListPaymentRequestsViewModel
@{
Layout = "_Layout";
ViewData["Title"] = "Payment Requests";
}
Title | Expiry | Price | Status | Actions |
---|---|---|---|---|
@item.Title | @(item.ExpiryDate?.ToString("g") ?? "No Expiry") | @item.Amount @item.Currency | @item.Status | Edit - View - Invoices - Pay - Clone - @(item.Archived ? "Unarchive" : "Archive") |
There are no payment requests matching your criteria.
}