Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_DiscountBox.cshtml

@model ShoppingCartModel.DiscountBoxModel
@if (Model.Display)
{
    
@T("ShoppingCart.DiscountCouponCode")
@T("ShoppingCart.DiscountCouponCode.Tooltip")
@foreach (var message in Model.Messages) {
@message
} @foreach (var discount in Model.AppliedDiscountsWithCodes) {
@string.Format(T("ShoppingCart.DiscountCouponCode.CurrentCode").Text, discount.CouponCode) @*empty value (little hack for FormValueExistsAttribute)*@
}
}