@model VendorModel
@(await Html.LocalizedEditorAsync("vendor-info-localized", @
, @
))
@if (Model.Id > 0) {
@if (Model.AssociatedCustomers.Count > 0) { for (var i = 0; i < Model.AssociatedCustomers.Count; i++) { @Model.AssociatedCustomers[i].Email if (i != Model.AssociatedCustomers.Count - 1) { , } } } else {
@T("Admin.Vendors.Fields.AssociatedCustomerEmails.None")
}
}
@if (Model.VendorAttributes.Count > 0) { @await Html.PartialAsync("_VendorAttributes", Model.VendorAttributes) }
@T("Admin.Vendors.Address")