@Model.PostCreatedOnStr
@if (Model.IsCurrentCustomerAllowedToEditPost) { @Html.RouteLink(T("Forum.EditPost").Text, "PostEdit", new {id = Model.Id}, new {@class = "edit-post-button"}) } @if (Model.IsCurrentCustomerAllowedToDeletePost) { @T("Forum.DeletePost").Text }
#@(Model.Id) @Html.RouteLink(T("Forum.QuotePost").Text, "PostCreateQuote", new {id = Model.ForumTopicId, quote = Model.Id}, new {@class = "quote-post-button"})
@Html.Raw(Model.FormattedText)
@if (Model.AllowPostVoting) {
@Model.VoteCount
}
@if (Model.SignaturesEnabled & !string.IsNullOrEmpty(Model.FormattedSignature)) {
@Html.Raw(Model.FormattedSignature)
}