@model ConfigurationModel @{ Layout = "_AdminLayout"; NopHtml.SetActiveMenuItemSystemName("CarHaven.Configuration"); ViewBag.PageTitle = T("Admin.NopStation.Theme.CarHaven.Configuration").Text; var customer = await workContext.GetCurrentCustomerAsync(); const string hideColorBlockAttributeName = "CarHavenConfigurationPage.HideColorBlock"; var hideColorBlock = await genericAttributeService.GetAttributeAsync(customer, hideColorBlockAttributeName, defaultValue: true); const string hideGeneralBlockAttributeName = "CarHavenConfigurationPage.HideGeneralBlock"; var hideGeneralBlock = await genericAttributeService.GetAttributeAsync(customer, hideGeneralBlockAttributeName, defaultValue: true); }

@T("Admin.NopStation.Theme.CarHaven.Configuration")

@await Component.InvokeAsync(typeof(StoreScopeConfigurationViewComponent))
@await Html.PartialAsync("_Configure.Color", Model) @await Html.PartialAsync("_Configure.General", Model)