@model Project_Unite.Models.AddWikiCategoryViewModel @{ ViewBag.Title = "Add wiki category"; }
Please fill the form to add a new category.
@using (Html.BeginForm()) {| Category name: | @Html.TextBoxFor(Model=>Model.Name, new { @class="form-control"}) |
| Parent category: | @Html.DropDownListFor(Model => Model.ParentId, Model.Parents, new { @class = "form-control" }) |