@model IList @using Nop.Core.Domain.Catalog @if (Model.Count > 0) {

@T("Products.Tags")

    @for (var i = 0; i < Model.Count; i++) {
  • @Model[i].Name @T("Products.Tags.Count", Model[i].ProductCount)
  • if (i != Model.Count - 1) {
  • ,
  • } }
}