Webiant Logo Webiant Logo
  1. No results found.

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

SubscribePopup.cshtml

@model BackInStockSubscribeModel

@if (Model.AlreadySubscribed) { @T("BackInStockSubscriptions.AlreadySubscribed") } else { @T("BackInStockSubscriptions.PopupTitle") }

@if (!Model.SubscriptionAllowed) {
@T("BackInStockSubscriptions.NotAllowed")
} else if (!Model.IsCurrentCustomerRegistered) {
@T("BackInStockSubscriptions.OnlyRegistered")
} else if (!Model.AlreadySubscribed && Model.CurrentNumberOfBackInStockSubscriptions >= Model.MaximumBackInStockSubscriptions) {
@string.Format(T("BackInStockSubscriptions.MaxSubscriptions").Text, Model.MaximumBackInStockSubscriptions)
} else { if (!Model.AlreadySubscribed) {
@T("BackInStockSubscriptions.Tooltip")
} }