@using BTCPayServer.Services.PaymentRequests @using Microsoft.AspNetCore.Html @using Microsoft.AspNetCore.Mvc.TagHelpers @using BTCPayServer.Components @model BTCPayServer.Models.PaymentRequestViewModels.ListPaymentRequestsViewModel @{ Layout = "_Layout"; ViewData["Title"] = "Payment Requests"; }
@if (Model.Items.Count > 0) { @foreach (var item in Model.Items) { }
Title
Expiry
Status Amount Actions
@item.Title @(item.ExpiryDate?.ToBrowserDate() ?? new HtmlString($"No Expiry")) @item.Status @item.AmountFormatted Invoices - Clone - @(item.Archived ? "Unarchive" : "Archive") - View
} else {

There are no payment requests matching your criteria.

}