@inherits Umbraco.Web.Macros.PartialViewMacroPage @{ var projectId = Request["Id"]; int id = 0; } @if (!string.IsNullOrEmpty(projectId) && int.TryParse(projectId, out id)) { var project = Umbraco.TypedContent(projectId); var forums = project.Children.Where(x => x.DocumentTypeAlias == "Forum");
@project.Name

Existing forums:


Add forum

Add
}