@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)
}