@model ManufacturerNavigationModel
@using SmartStore.Core.Domain.Catalog;
@using SmartStore.Core.Infrastructure;
@using SmartStore.Services.Catalog;
@using SmartStore.Web.Models.Catalog;
@if (Model.Manufacturers.Count > 0)
{
@T("Manufacturers")
@foreach (var manufacturer in Model.Manufacturers)
{
//we display all manufacturers in mobile version (do not use @Model.ManufacturersToDisplay)
-
@manufacturer.Name
}
@if (Model.TotalManufacturers > Model.Manufacturers.Count)
{
}
}