diff options
| author | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-20 16:45:17 -0400 |
| commit | cdc61eb4ea5309769ad4db84d92594e4dc3dff67 (patch) | |
| tree | a8297a7aecc4376f07a497a5e02ab5ff165bfbd3 /Project-Unite/Views/Admin/EditForum.cshtml | |
| parent | d9f475e1f33bbf39ca0d79d7a6b0c2fd501b4f2d (diff) | |
| download | project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.gz project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.tar.bz2 project-unite-cdc61eb4ea5309769ad4db84d92594e4dc3dff67.zip | |
Initial commit (azure deploy test)
Diffstat (limited to 'Project-Unite/Views/Admin/EditForum.cshtml')
| -rw-r--r-- | Project-Unite/Views/Admin/EditForum.cshtml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Project-Unite/Views/Admin/EditForum.cshtml b/Project-Unite/Views/Admin/EditForum.cshtml new file mode 100644 index 0000000..af22f81 --- /dev/null +++ b/Project-Unite/Views/Admin/EditForum.cshtml @@ -0,0 +1,51 @@ +@model Project_Unite.Models.AddForumCategoryViewModel +@{ + ViewBag.Title = "Edit " + Model.Name; +} + +<h2>Add forum category</h2> + +<div class="panel panel-danger"> + @if (ViewBag.Error != null) + { + <p><span class="glyphicon glyphicon-warning-sign"></span> @ViewBag.Error</p> + } +</div> + +@using (Html.BeginForm(new { id = Model.Id })) +{ + @Html.AntiForgeryToken() + @Html.HiddenFor(Model => Model.Id) + @Html.HiddenFor(Model => Model.PossibleParents) + <table class="table-condensed"> + <tr> + <td>@Html.DisplayNameFor(Model => Model.Name)</td> + <td>@Html.TextBoxFor(Model => Model.Name)</td> + </tr> + <tr> + <td>@Html.DisplayNameFor(Model => Model.Description)</td> + <td>@Html.TextBoxFor(Model => Model.Description)</td> + </tr> + <tr> + <td>@Html.DisplayNameFor(Model => Model.Parent)</td> + <td>@Html.DropDownListFor(Model => Model.Parent, Model.PossibleParents)</td> + </tr> + </table> + + <h4>ACL rule definitions</h4> + <p>Below you can specify what roles can see, reply or post to this category.</p> + <hr /> + + <table class="table-condensed"> + <tr> + <th>Role name</th> + <th>Can see?</th> + <th>Can reply?</th> + <th>Can post?</th> + </tr> + </table> + <p>ACL rules for this forum may be altered in the "Forum ACL Editor" page.</p> + + <input type="submit" value="Add" class="btn btn-primary" /> + @Html.ActionLink("Cancel", "Forums", "Admin", null, new { @class = "btn btn-default" }) +}
\ No newline at end of file |
