Try your search with a different keyword or use * as a wildcard.
@model IList
@{
//When there is just one tier (with qty 1), there are no actual savings in the list.
var displayTierPrices = Model.Count > 0 && !(Model.Count == 1 && Model[0].Quantity <= 1);
}
@if (displayTierPrices)
{
@T("Products.TierPrices")
@T("Products.TierPrices.Quantity")
@foreach (var tierPrice in Model)
{
@(tierPrice.Quantity)+
}
@T("Products.TierPrices.Price")
@foreach (var tierPrice in Model)
{
@tierPrice.Price
}
}