@model ThemeListModel @using SmartStore.Web.Framework.UI; @using SmartStore.Admin.Models.Themes; @using SmartStore.Core.Themes; @{ ViewBag.Title = T("Admin.Configuration.Themes").Text; } @using (Html.BeginForm()) {
| @Html.SmartLabelFor(model => model.StoreId) | @Html.DropDownList("StoreId", Model.AvailableStores, new { onchange = "location.href = '" + @Url.Action("List") + "?storeId=' + this.value;" }) |
| @Html.SmartLabelFor(model => model.AllowCustomerToSelectTheme) | @Html.EditorFor(model => model.AllowCustomerToSelectTheme) @Html.ValidationMessageFor(model => model.AllowCustomerToSelectTheme) |
| @Html.SmartLabelFor(model => model.SaveThemeChoiceInCookie) | @Html.EditorFor(model => model.SaveThemeChoiceInCookie) @Html.ValidationMessageFor(model => model.SaveThemeChoiceInCookie) |
| @Html.SmartLabelFor(model => model.MobileDevicesSupported) | @Html.EditorFor(model => model.MobileDevicesSupported) @Html.ValidationMessageFor(model => model.MobileDevicesSupported) |
|
|
|
@T("Admin.Configuration.Themes.Options.Title")@T("Admin.Configuration.Themes.Options.Info") |
|
| @Html.SmartLabelFor(model => model.BundleOptimizationEnabled) | @Html.DropDownListFor(model => model.BundleOptimizationEnabled, Model.AvailableBundleOptimizationValues) @Html.ValidationMessageFor(model => model.BundleOptimizationEnabled) |