@model CheckoutModel @{ Layout = null; } @Model.HtmlTitle

Pay with @Model.StoreName

@if (Model.Status == "new") {

This payment method requires javascript.

} else if (Model.Status == "paid" || Model.Status == "complete" || Model.Status == "confirmed") {

This invoice has been paid

} else if (Model.Status == "expired" || Model.Status == "invalid") {

This invoice has expired

} else {

Non-supported state of invoice

}

Go back to Javascript enabled invoice

@await Component.InvokeAsync("UiExtensionPoint", new { location = "checkout-noscript-end", model = Model })