Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Default.cshtml

@model LastPostModel
@if (Model.Id > 0)
{
    
@Model.PostCreatedOnStr
if (Model.ShowTopic) {
@Html.RouteLink(Model.ForumTopicSubject, "TopicSlug", new { id = Model.ForumTopicId, slug = Model.ForumTopicSeName })
}
@if (Model.AllowViewingProfiles) { @Html.RouteLink(Model.CustomerName, "CustomerProfile", new { Id = Model.CustomerId }) } else { @Model.CustomerName }
} else {
@T("Forum.NoPosts")
}