Try your search with a different keyword or use * as a wildcard.
@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)*@
}
}