@model ForumSettingsModel @using Telerik.Web.Mvc.UI; @{ ViewBag.Title = T("Admin.Configuration.Settings.Forums").Text; } @using (Html.BeginForm()) {
@T("Admin.Configuration.Settings.Forums")
@Html.Action("StoreScopeConfiguration", "Setting") @Html.ValidationSummary(false)
@Html.SmartLabelFor(model => model.ForumsEnabled) @Html.SettingEditorFor(model => model.ForumsEnabled) @Html.ValidationMessageFor(model => model.ForumsEnabled)
@Html.SmartLabelFor(model => model.RelativeDateTimeFormattingEnabled) @Html.SettingEditorFor(model => model.RelativeDateTimeFormattingEnabled) @Html.ValidationMessageFor(model => model.RelativeDateTimeFormattingEnabled)
@Html.SmartLabelFor(model => model.ShowCustomersPostCount) @Html.SettingEditorFor(model => model.ShowCustomersPostCount) @Html.ValidationMessageFor(model => model.ShowCustomersPostCount)
@Html.SmartLabelFor(model => model.AllowGuestsToCreatePosts) @Html.SettingEditorFor(model => model.AllowGuestsToCreatePosts) @Html.ValidationMessageFor(model => model.AllowGuestsToCreatePosts)
@Html.SmartLabelFor(model => model.AllowGuestsToCreateTopics) @Html.SettingEditorFor(model => model.AllowGuestsToCreateTopics) @Html.ValidationMessageFor(model => model.AllowGuestsToCreateTopics)
@Html.SmartLabelFor(model => model.AllowCustomersToEditPosts) @Html.SettingEditorFor(model => model.AllowCustomersToEditPosts) @Html.ValidationMessageFor(model => model.AllowCustomersToEditPosts)
@Html.SmartLabelFor(model => model.AllowCustomersToDeletePosts) @Html.SettingEditorFor(model => model.AllowCustomersToDeletePosts) @Html.ValidationMessageFor(model => model.AllowCustomersToDeletePosts)
@Html.SmartLabelFor(model => model.AllowCustomersToManageSubscriptions) @Html.SettingEditorFor(model => model.AllowCustomersToManageSubscriptions) @Html.ValidationMessageFor(model => model.AllowCustomersToManageSubscriptions)
@Html.SmartLabelFor(model => model.TopicsPageSize) @Html.SettingEditorFor(model => model.TopicsPageSize) @Html.ValidationMessageFor(model => model.TopicsPageSize)
@Html.SmartLabelFor(model => model.PostsPageSize) @Html.SettingEditorFor(model => model.PostsPageSize) @Html.ValidationMessageFor(model => model.PostsPageSize)
@Html.SmartLabelFor(model => model.SearchResultsPageSize) @Html.SettingEditorFor(model => model.SearchResultsPageSize) @Html.ValidationMessageFor(model => model.SearchResultsPageSize)
@Html.SmartLabelFor(model => model.ForumEditor) @Html.SettingOverrideCheckbox(model => Model.ForumEditor) @Html.DropDownListForEnum(model => model.ForumEditor) @Html.ValidationMessageFor(model => model.ForumEditor)
@Html.SmartLabelFor(model => model.SignaturesEnabled) @Html.SettingEditorFor(model => model.SignaturesEnabled) @Html.ValidationMessageFor(model => model.SignaturesEnabled)

@Html.SmartLabelFor(model => model.AllowPrivateMessages) @Html.SettingOverrideCheckbox(model => Model.AllowPrivateMessages) @Html.EditorFor(model => model.AllowPrivateMessages) @Html.ValidationMessageFor(model => model.AllowPrivateMessages)
@Html.SmartLabelFor(model => model.ShowAlertForPM) @Html.SettingEditorFor(model => model.ShowAlertForPM) @Html.ValidationMessageFor(model => model.ShowAlertForPM)
@Html.SmartLabelFor(model => model.NotifyAboutPrivateMessages) @Html.SettingEditorFor(model => model.NotifyAboutPrivateMessages) @Html.ValidationMessageFor(model => model.NotifyAboutPrivateMessages)

@Html.SmartLabelFor(model => model.ForumFeedsEnabled) @Html.SettingEditorFor(model => model.ForumFeedsEnabled) @Html.ValidationMessageFor(model => model.ForumFeedsEnabled)
@Html.SmartLabelFor(model => model.ForumFeedCount) @Html.SettingEditorFor(model => model.ForumFeedCount) @Html.ValidationMessageFor(model => model.ForumFeedCount)
@Html.SmartLabelFor(model => model.ActiveDiscussionsFeedEnabled) @Html.SettingEditorFor(model => model.ActiveDiscussionsFeedEnabled) @Html.ValidationMessageFor(model => model.ActiveDiscussionsFeedEnabled)
@Html.SmartLabelFor(model => model.ActiveDiscussionsFeedCount) @Html.SettingEditorFor(model => model.ActiveDiscussionsFeedCount) @Html.ValidationMessageFor(model => model.ActiveDiscussionsFeedCount)
}