diff options
| author | Michael <[email protected]> | 2017-03-21 13:21:41 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-21 13:21:41 -0400 |
| commit | 8f9aeef8b1331314b4779b45eadd101e028d1a48 (patch) | |
| tree | 0f95b6d9f085f60e6bb7982fd14eb64774aa209d /Project-Unite/Views/Admin | |
| parent | bf85c3cda26d1ca3603d0a72e1cd3330335a73b1 (diff) | |
| download | project-unite-8f9aeef8b1331314b4779b45eadd101e028d1a48.tar.gz project-unite-8f9aeef8b1331314b4779b45eadd101e028d1a48.tar.bz2 project-unite-8f9aeef8b1331314b4779b45eadd101e028d1a48.zip | |
Add "form-control" class to add forum category page
Diffstat (limited to 'Project-Unite/Views/Admin')
| -rw-r--r-- | Project-Unite/Views/Admin/AddForumCategory.cshtml | 8 |
1 files 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 @@ <table class="table-condensed"> <tr> <td>@Html.DisplayNameFor(Model => Model.Name)</td> - <td>@Html.TextBoxFor(Model => Model.Name)</td> + <td>@Html.TextBoxFor(Model => Model.Name, new { @class = "form-control" })</td> </tr> <tr> <td>@Html.DisplayNameFor(Model => Model.Description)</td> - <td>@Html.TextBoxFor(Model => Model.Description)</td> + <td>@Html.TextBoxFor(Model => Model.Description, new { @class = "form-control" })</td> </tr> <tr> <td>@Html.DisplayNameFor(Model => Model.Parent)</td> - <td>@Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents)</td> + <td>@Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents, new { @class = "form-control" })</td> </tr> </table> <h4>ACL rule definitions</h4> <p>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.</p> - <p><strong>Copy ACL data from: </strong>@Html.DropDownListFor(Model=>Model.StealPermissionsFrom, Model.PossibleParents)</p> + <p><strong>Copy ACL data from: </strong>@Html.DropDownListFor(Model=>Model.StealPermissionsFrom, Model.PossibleParents, new { @class = "form-control" })</p> <p>Leave this value as "Top Level" to not copy permissions. Default permission values are 'Can Post' for all roles.</p> <h4>Adding new roles</h4> <p>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.</p> |
