@model BlogSettingsModel @using Telerik.Web.Mvc.UI; @{ //page title ViewBag.Title = T("Admin.Configuration.Settings.Blog").Text; } @using (Html.BeginForm()) {
@T("Admin.Configuration.Settings.Blog")
@Html.Action("StoreScopeConfiguration", "Setting") @Html.ValidationSummary(false)
@Html.SmartLabelFor(model => model.Enabled) @Html.SettingEditorFor(model => model.Enabled) @Html.ValidationMessageFor(model => model.Enabled)
@Html.SmartLabelFor(model => model.PostsPageSize) @Html.SettingEditorFor(model => model.PostsPageSize) @Html.ValidationMessageFor(model => model.PostsPageSize)
@Html.SmartLabelFor(model => model.AllowNotRegisteredUsersToLeaveComments) @Html.SettingEditorFor(model => model.AllowNotRegisteredUsersToLeaveComments) @Html.ValidationMessageFor(model => model.AllowNotRegisteredUsersToLeaveComments)
@Html.SmartLabelFor(model => model.NotifyAboutNewBlogComments) @Html.SettingEditorFor(model => model.NotifyAboutNewBlogComments) @Html.ValidationMessageFor(model => model.NotifyAboutNewBlogComments)
@Html.SmartLabelFor(model => model.NumberOfTags) @Html.SettingEditorFor(model => model.NumberOfTags) @Html.ValidationMessageFor(model => model.NumberOfTags)
@Html.SmartLabelFor(model => model.MaxAgeInDays) @Html.SettingEditorFor(model => model.MaxAgeInDays) @Html.ValidationMessageFor(model => model.MaxAgeInDays)
@Html.SmartLabelFor(model => model.ShowHeaderRssUrl) @Html.SettingEditorFor(model => model.ShowHeaderRssUrl) @Html.ValidationMessageFor(model => model.ShowHeaderRssUrl)
}