@model BTCPayServer.Models.PaymentRequestViewModels.ViewPaymentRequestViewModel
@addTagHelper *, Meziantou.AspNetCore.BundleTagHelpers
@inject BTCPayServer.HostedServices.CssThemeManager themeManager
@{
ViewData["Title"] = Model.Title;
Layout = null;
}
@Model.Title
@if (Model.CustomCSSLink != null)
{
}
@if (!Context.Request.Query.ContainsKey("simple"))
{
}
@if (!string.IsNullOrEmpty(Model.EmbeddedCSS))
{
}
@if (Context.Request.Query.ContainsKey("simple"))
{
@await Html.PartialAsync("MinimalPaymentRequest", Model)
}
else
{
-
Request amount:
{{srvModel.amountFormatted}}
-
Paid so far:
{{srvModel.amountCollectedFormatted}}
-
Amount due:
{{srvModel.amountDueFormatted}}
Invoice # |
Price |
Expiry |
Status |
No payments made yet |
{{invoice.id}} |
{{invoice.amountFormatted}} |
{{moment(invoice.expiryDate).format('L HH:mm')}} |
{{invoice.status}} |
Tx Id |
Payment Method |
Amount |
Link |
{{payment.id}}
|
{{payment.id}}
|
{{formatPaymentMethod(payment.paymentMethod)}} |
{{payment.amount.noExponents()}} |
Link
|
{{payment.link}}
|
|
|
}