Try your search with a different keyword or use * as a wildcard.
@model CheckoutConfirmModel
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmTop, additionalData = Model })
@if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning) || Model.Warnings.Count > 0)
{
@if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning))
{
@Model.MinOrderTotalWarning
}
@if (Model.Warnings.Count > 0)
{
@foreach (var warning in Model.Warnings)
{
@warning
}
}
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmBottom, additionalData = Model })
@await Component.InvokeAsync(typeof(OrderSummaryViewComponent), new { prepareAndDisplayOrderReviewData = true })
@if (string.IsNullOrEmpty(Model.MinOrderTotalWarning) && Model.TermsOfServiceOnOrderConfirmPage)
{
@T("Checkout.TermsOfService.PleaseAccept")
@T("Checkout.TermsOfService.IAccept")
@if (Model.TermsOfServicePopup)
{
@T("Checkout.TermsOfService.Read")
$(function() {
$('#read-terms').on('click', function(e) {
e.preventDefault();
displayPopupContentFromUrl('@Url.RouteUrl("TopicPopup", new {SystemName = "conditionsofuse"})', '@T("Checkout.TermsOfService")');
});
});
}
else
{
@T("Checkout.TermsOfService.Read")
}
}
@if (Model.DisplayCaptcha)
{
}