@model EditForumPostModel @using SmartStore.Core.Domain.Forums; @using SmartStore.Services.Forums; @using SmartStore.Services.Seo; @using SmartStore.Web; @using SmartStore.Web.Models.Boards; @using (Html.BeginForm()) {
@if (Model.IsEdit) {

@T("Forum.EditPost")

} else {

@T("Forum.NewPost")

}
@Html.ValidationSummary(true)
@Html.HiddenFor(model => model.Id) @Html.HiddenFor(model => model.ForumTopicId)
@T("Forum.ForumName"): @Model.ForumName
@T("Forum.TopicTitle"): @Model.ForumTopicSubject
@Html.TextAreaFor(model => model.Text) @Html.ValidationMessageFor(model => model.Text)
@if (Model.IsCustomerAllowedToSubscribe) {
@Html.EditorFor(model => model.Subscribed) @Html.LabelFor(model => model.Subscribed, @T("Forum.NotifyWhenSomeonePostsInThisTopic").Text)
}
}