From 8f9aeef8b1331314b4779b45eadd101e028d1a48 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 21 Mar 2017 13:21:41 -0400 Subject: [PATCH] Add "form-control" class to add forum category page --- Project-Unite/Views/Admin/AddForumCategory.cshtml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Project-Unite/Views/Admin/AddForumCategory.cshtml b/Project-Unite/Views/Admin/AddForumCategory.cshtml index 4b3e9fd..6f852c5 100644 --- a/Project-Unite/Views/Admin/AddForumCategory.cshtml +++ b/Project-Unite/Views/Admin/AddForumCategory.cshtml @@ -21,22 +21,22 @@ - + - + - +
@Html.DisplayNameFor(Model => Model.Name)@Html.TextBoxFor(Model => Model.Name)@Html.TextBoxFor(Model => Model.Name, new { @class = "form-control" })
@Html.DisplayNameFor(Model => Model.Description)@Html.TextBoxFor(Model => Model.Description)@Html.TextBoxFor(Model => Model.Description, new { @class = "form-control" })
@Html.DisplayNameFor(Model => Model.Parent)@Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents)@Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents, new { @class = "form-control" })

ACL rule definitions

ACL rules for this forum can be edited in the Access Control section. Additionally, you can select an existing forum to copy ACL data from.

-

Copy ACL data from: @Html.DropDownListFor(Model=>Model.StealPermissionsFrom, Model.PossibleParents)

+

Copy ACL data from: @Html.DropDownListFor(Model=>Model.StealPermissionsFrom, Model.PossibleParents, new { @class = "form-control" })

Leave this value as "Top Level" to not copy permissions. Default permission values are 'Can Post' for all roles.

Adding new roles

When you add a new role to the site, the ACL system will automatically add it to this forum, however its permission data will be set to the default "Can Post" value.