@model Project_Unite.Models.AddForumCategoryViewModel @{ ViewBag.Title = "Edit " + Model.Name; }

Add forum category

@if (ViewBag.Error != null) {

@ViewBag.Error

}
@using (Html.BeginForm(new { id = Model.Id })) { @Html.AntiForgeryToken() @Html.HiddenFor(Model => Model.Id) @Html.HiddenFor(Model => Model.PossibleParents)
@Html.DisplayNameFor(Model => Model.Name) @Html.TextBoxFor(Model => Model.Name)
@Html.DisplayNameFor(Model => Model.Description) @Html.TextBoxFor(Model => Model.Description)
@Html.DisplayNameFor(Model => Model.Parent) @Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents)

ACL rule definitions

Below you can specify what roles can see, reply or post to this category.


Role name Can see? Can reply? Can post?

ACL rules for this forum may be altered in the "Forum ACL Editor" page.

@Html.ActionLink("Cancel", "Forums", "Admin", null, new { @class = "btn btn-default" }) }