summaryrefslogtreecommitdiff
path: root/Project-Unite/Views/Admin/EditForum.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'Project-Unite/Views/Admin/EditForum.cshtml')
-rw-r--r--Project-Unite/Views/Admin/EditForum.cshtml51
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