Webiant Logo Webiant Logo
  1. No results found.

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

_DeliveryInfo.cshtml

@model ProductDetailsModel
@if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping || !string.IsNullOrWhiteSpace(Model.DeliveryDate))
{
    
@if (Model.FreeShippingNotificationEnabled && Model.IsFreeShipping) {
@T("Products.FreeShipping")
} @if (!string.IsNullOrWhiteSpace(Model.DeliveryDate)) {
@T("Products.DeliveryDate"): @Model.DeliveryDate
}
}