Try your search with a different keyword or use * as a wildcard.
@model CustomerRecurringPaymentListModel
@{
Layout = "_ColumnsTwo";
//title
NopHtml.AddTitleParts(T("PageTitle.Account").Text);
//page class
NopHtml.AppendPageCssClassParts("html-account-page");
NopHtml.AppendPageCssClassParts("html-order-list-page");
var canRetryRecurringOrders = Model.RecurringPayments.Any(recurring => recurring.CanRetryLastPayment);
}
@section left
{
@await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.RecurringPayments })
}
@T("Account.MyAccount") - @T("Account.CustomerOrders.RecurringOrders")
@if (Model.RecurringPayments.Count > 0)
{
if (Model.RecurringPaymentErrors.Any())
{
}
}
else
{
@T("Account.CustomerRecurringPayments.NoPayments")
}